forked from s3lph/matemat
10 lines
307 B
Python
10 lines
307 B
Python
"""
|
|
This package contains the pagelet functions served by the Matemat software.
|
|
|
|
A new pagelet function must be imported here to be automatically loaded when the server is started.
|
|
"""
|
|
|
|
from .main import main_page
|
|
from .login import login_page
|
|
from .logout import logout
|
|
from .touchkey import touchkey_page
|