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 ], partials: [ Partials.Channel ],
}), }),
github: octokit, github: octokit,
githubApp: githubApp, githubApp: githubApp,
recentlyActiveChannels: new Set<string>(), recentlyActiveChannels: new Set<string>(),
}; };
+3 -3
View File
@@ -8,8 +8,8 @@ import type { Client } from "discord.js";
import type { App } from "octokit"; import type { App } from "octokit";
export interface Amari { export interface Amari {
discord: Client; discord: Client;
github: App["octokit"]; github: App["octokit"];
githubApp: App; githubApp: App;
recentlyActiveChannels: Set<string>; recentlyActiveChannels: Set<string>;
} }