-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09bb4f1
commit 261c54e
Showing
30 changed files
with
875 additions
and
1,371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as codewars from "./codewars"; | ||
import * as github from "./github"; | ||
import * as stackoverflow from "./stackoverflow"; | ||
import * as wakatime from "./wakatime"; | ||
|
||
export const getPlatformTemplates = (platform: string) => { | ||
switch (platform) { | ||
case "github": | ||
return github; | ||
case "stackoverflow": | ||
return stackoverflow; | ||
case "wakatime": | ||
return wakatime; | ||
case "codewars": | ||
return codewars; | ||
default: | ||
return null; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.