Skip to content

Commit

Permalink
[CHANGE] Fix wrong module name
Browse files Browse the repository at this point in the history
  • Loading branch information
maru-shlee committed Oct 22, 2024
1 parent 863c2fb commit ed87aed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/modules/robico.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const BaseModule = require('./baseModule');

class Ozobot extends BaseModule {
class Robico extends BaseModule {
// 클래스 내부에서 사용될 필드들을 이곳에서 선언합니다.
constructor() {
super();
Expand Down Expand Up @@ -476,4 +476,4 @@ class Ozobot extends BaseModule {
}
}
}
module.exports = new Ozobot();
module.exports = new Robico();

0 comments on commit ed87aed

Please sign in to comment.