mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-04-25 23:37:43 -05:00
13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
import CountdownTweet from "./generators/CountdownTweet.mjs";
|
|
import TwitterManager from "./TwitterManager.mjs"
|
|
|
|
export function defaultTwitterManager() {
|
|
return new TwitterManager([
|
|
new CountdownTweet,
|
|
]);
|
|
}
|
|
|
|
export function sendTweets() {
|
|
return defaultTwitterManager().sendTweets();
|
|
}
|