mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-12 08:41:46 -05:00
13 lines
229 B
CoffeeScript
13 lines
229 B
CoffeeScript
|
Classroom = require 'models/Classroom'
|
||
|
|
||
|
module.exports = new Classroom(
|
||
|
{
|
||
|
_id: "classroom0",
|
||
|
name: "Teacher Zero's Other Classroom"
|
||
|
ownerID: "teacher0",
|
||
|
aceConfig:
|
||
|
language: 'python'
|
||
|
members: []
|
||
|
}
|
||
|
)
|