forked from gndx/gndxdev-bot
-
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.
Merge pull request gndx#2 from jgalianoz/copies
Separate copies to one centralized file
- Loading branch information
Showing
4 changed files
with
31 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
const copies = require('../data/copies.json'); | ||
|
||
const commands = { | ||
merch: 'HolidayPresent El nuevo merchandising está aquí.... Compruébalo: https://merch.streamelements.com/gndxdev', | ||
patreon: 'GivePLZ Quieres apoyar este contenido: Visita mi Patreon: https://www.patreon.com/gndx', | ||
blog: 'TakeNRG Te comparto mi blog: https://gndx.dev y mi canal de YouTube donde comparto mis conferencias: https://youtube.com/c/oscarbarajas : Quieres apoyar mi contenido educativo visita mi Patreon: https://www.patreon.com/gndx', | ||
social: 'Mis Redes sociales: \n Instagram: https://instagram.com/gndx \n Twitter: https://twitter.com/gndx \n GitHub: https://github.com/gndx', | ||
courses: '🎓📗 Mis cursos en Platzi: https://platzi.com/teachers/gndx/', | ||
twitch: 'imGlitch Recuerda todos los domingos a las 6:00 P.M. Hablo de tecnología en vivo en este canal, ¡Sígueme!', | ||
youtube: 'EarthDay Suscríbete a mi canal de YouTube donde comparto mis conferencias https://youtube.com/c/oscarbarajas' | ||
merch: copies.commands.merch, | ||
patreon: copies.commands.patreon, | ||
blog: copies.commands.blog, | ||
social: copies.commands.social, | ||
courses: copies.commands.courses, | ||
twitch: copies.commands.twitch, | ||
youtube: copies.commands.youtube | ||
}; | ||
|
||
module.exports = commands; |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
const copies = require('../data/copies.json'); | ||
|
||
const greetings = { | ||
welcome: '¡Bienvenidos! ;)', | ||
hello: 'imGlitch Hola', | ||
subs: '¡Gracias por suscribirte! BloodTrail' | ||
welcome: copies.greetings.welcome, | ||
hello: copies.greetings.hello, | ||
subs: copies.greetings.subs | ||
}; | ||
|
||
module.exports = greetings; |
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,16 @@ | ||
{ | ||
"commands": { | ||
"merch": "HolidayPresent El nuevo merchandising está aquí.... Compruébalo: https://merch.streamelements.com/gndxdev", | ||
"patreon": "GivePLZ Quieres apoyar este contenido: Visita mi Patreon: https://www.patreon.com/gndx", | ||
"blog": "TakeNRG Te comparto mi blog: https://gndx.dev y mi canal de YouTube donde comparto mis conferencias: https://youtube.com/c/oscarbarajas : Quieres apoyar mi contenido educativo visita mi Patreon: https://www.patreon.com/gndx", | ||
"social": "Mis Redes sociales: \n Instagram: https://instagram.com/gndx \n Twitter: https://twitter.com/gndx \n GitHub: https://github.com/gndx", | ||
"courses": "🎓📗 Mis cursos en Platzi: https://platzi.com/teachers/gndx/", | ||
"twitch": "imGlitch Recuerda todos los domingos a las 6:00 P.M. Hablo de tecnología en vivo en este canal, ¡Sígueme!", | ||
"youtube": "EarthDay Suscríbete a mi canal de YouTube donde comparto mis conferencias https://youtube.com/c/oscarbarajas" | ||
}, | ||
"greetings": { | ||
"welcome": "¡Bienvenidos! ;)", | ||
"hello": "imGlitch Hola", | ||
"subs": "¡Gracias por suscribirte! BloodTrail" | ||
} | ||
} |
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