mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
* Initial * Progress * Fix * Progress * Notifications list page * BADGE_MANAGER_ADDED * Mark as seen initial * Split tables * Progress * Fix styles * Push notifs initial * Progress * Rename * Routines * Progress * Add e2e tests * Done? * Try updating actions * Consistency * Dep fix * A couple fixes
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { updatePatreonData } from "../modules/patreon";
|
|
import { Routine } from "./routine.server";
|
|
|
|
export const UpdatePatreonDataRoutine = new Routine({
|
|
name: "UpdatePatreonData",
|
|
func: async () => {
|
|
await updatePatreonData();
|
|
},
|
|
});
|