mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-30 10:56:53 -05:00
12 lines
229 B
CoffeeScript
12 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: []
|
|
}
|
|
)
|