chore: remove news feed feature #17

Merged
naomi merged 3 commits from feat/news into main 2026-03-09 13:34:19 -07:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 52cbdce4ee - Show all commits
+2 -2
View File
@@ -59,8 +59,8 @@ const amari: Amari = {
],
partials: [ Partials.Channel ],
}),
github: octokit,
githubApp: githubApp,
github: octokit,
githubApp: githubApp,
recentlyActiveChannels: new Set<string>(),
};
+3 -3
View File
@@ -8,8 +8,8 @@ import type { Client } from "discord.js";
import type { App } from "octokit";
export interface Amari {
discord: Client;
github: App["octokit"];
githubApp: App;
discord: Client;
github: App["octokit"];
githubApp: App;
recentlyActiveChannels: Set<string>;
}