Add Golang
This commit is contained in:
parent
0fa062875b
commit
6d283cb3df
4 changed files with 20 additions and 0 deletions
12
src/languages/go.js
Normal file
12
src/languages/go.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class Go extends Language {
|
||||
constructor() {
|
||||
super('go', {
|
||||
highlight: 'go',
|
||||
aliases: ['go']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Go;
|
Loading…
Add table
Add a link
Reference in a new issue