mirror of
https://github.com/khairul169/github-leaderboard.git
synced 2025-04-28 23:49:32 +07:00
16 lines
463 B
TypeScript
16 lines
463 B
TypeScript
import { calculateUserPoints } from "./calculate-user-points";
|
|
import { fetchRepoContributors } from "./fetch-repo-contributors";
|
|
import { fetchRepoData } from "./fetch-repo-data";
|
|
import { fetchUserProfile } from "./fetch-user-profile";
|
|
import { fetchUserRepos } from "./fetch-user-repos";
|
|
|
|
export const jobs = {
|
|
fetchUserRepos,
|
|
fetchRepoData,
|
|
fetchRepoContributors,
|
|
calculateUserPoints,
|
|
fetchUserProfile,
|
|
};
|
|
|
|
export type JobNames = keyof typeof jobs;
|