generated from nhcarrigan/template
e51a56c79f
## Summary - Removes the hourly RSS news posting scheduler and `postNews` module - Removes the `rss.ts` interface and `lastRssItems` tracking from the `Amari` interface and bot initialisation - Removes the `news` channel ID from `ids.ts` - Removes the `rss-parser` dependency ✨ This PR was created with help from Hikari~ 🌸 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Reviewed-on: #17 Co-authored-by: Hikari <hikari@nhcarrigan.com> Co-committed-by: Hikari <hikari@nhcarrigan.com>
16 lines
347 B
TypeScript
16 lines
347 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import type { Client } from "discord.js";
|
|
import type { App } from "octokit";
|
|
|
|
export interface Amari {
|
|
discord: Client;
|
|
github: App["octokit"];
|
|
githubApp: App;
|
|
recentlyActiveChannels: Set<string>;
|
|
}
|