forked from OSSPhilippines/covid19-tracker-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetResponses.ts
More file actions
18 lines (16 loc) · 1022 Bytes
/
getResponses.ts
File metadata and controls
18 lines (16 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const { version } = require("../../package.json");
// This file is a centralized location to get responses to the user
// Such as the BMC link, the twitter link, github repo page etc.
export const welcomeMessage = `Welcome to COVID-19 Tracker & CLI v${version} by Waren Gonzaga with Wareneutron Developers`;
export const lines = {
notFound: `\n${welcomeMessage}\n\nPlease visit: https://warengonza.ga/covid19-tracker-cli\n\n`,
defaultHeader: `COVID-19 Tracker & CLI v${version}`,
helpMessage: `Help: Try to append the URL with /help to learn more...`,
sponsorMessage: `Love this project? Help us to help others by means of coffee!\n`,
BMCLink: `(Buy Me A Coffee) warengonza.ga/coffee4dev`,
twitterPlug: `Follow me on twitter for more updates!\n`,
handleHashtag: ["@warengonzaga", "#covid19trackercli"],
docsLink: "Docs: docs.wareneutron.com/covid19-tracker-cli",
WNrepoLink: "Repo: repo.wareneutron.com/covid19-tracker-cli",
WNDonateLink: "Donate: wareneutron.com/donate",
};