rename: Follow the camelCase by filename and foldername
This commit is contained in:
parent
84facc8e6f
commit
87fd5f0ab9
5 changed files with 7 additions and 7 deletions
|
@ -10,7 +10,7 @@ const config = new Config()
|
|||
// Load pieces
|
||||
import './interaction-handlers/_load'
|
||||
import './listeners/_load'
|
||||
import './Commands/_load'
|
||||
import './commands/_load'
|
||||
|
||||
const release = version
|
||||
.slice((semver.coerce(version)?.toString() + '-').length)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import './learning_data'
|
||||
import './deleteLearn'
|
||||
import './information'
|
||||
import './learnedData'
|
||||
import './learn'
|
||||
import './help'
|
||||
import './list'
|
||||
|
|
|
@ -10,7 +10,7 @@ import { ApplyOptions } from '@sapphire/decorators'
|
|||
usage: '머핀아 학습데이터량',
|
||||
},
|
||||
})
|
||||
class LearnDataCommand extends Command {
|
||||
class LearnedDataCommand extends Command {
|
||||
public registerApplicationCommands(registry: Command.Registry) {
|
||||
registry.registerChatInputCommand(builder =>
|
||||
builder.setName(this.name).setDescription(this.description),
|
||||
|
@ -50,7 +50,7 @@ ${user.username}님이 가르쳐준 단어: ${userData.length}개`)
|
|||
}
|
||||
|
||||
void container.stores.loadPiece({
|
||||
piece: LearnDataCommand,
|
||||
name: 'learn_data',
|
||||
piece: LearnedDataCommand,
|
||||
name: 'learnedData',
|
||||
store: 'commands',
|
||||
})
|
|
@ -1 +1 @@
|
|||
import('./Client').then(a => new a.default().login())
|
||||
import('./client').then(a => new a.default().login())
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import previewWarning from './previewWarning'
|
||||
import { NODE_ENV } from './env'
|
||||
import ChatBot from './ChatBot'
|
||||
import ChatBot from './chatBot'
|
||||
import Config from './config'
|
||||
import noPerm from './noPerm'
|
||||
|
||||
|
|
Loading…
Reference in a new issue