13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
|
const Language = require('../struct/Language');
|
||
|
|
||
|
class Python extends Language {
|
||
|
constructor() {
|
||
|
super('python', {
|
||
|
highlight: 'py',
|
||
|
aliases: ['python', 'py']
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Python;
|