mirror of
https://github.com/brmlab/edubrm.git
synced 2025-06-08 21:03:59 +02:00
9 lines
166 B
Python
9 lines
166 B
Python
class Module():
|
|
|
|
title = ''
|
|
|
|
def start(self, area):
|
|
raise Exception('not implemented')
|
|
|
|
def run(self):
|
|
raise Exception('not implemented')
|