mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
9 lines
235 B
Python
9 lines
235 B
Python
|
|
from sections import MatrixSections
|
||
|
|
from units import MatrixUnits
|
||
|
|
import os
|
||
|
|
|
||
|
|
exports = {
|
||
|
|
"units": MatrixUnits,
|
||
|
|
"sections": MatrixSections,
|
||
|
|
"templates": os.path.join(os.path.dirname(os.path.abspath(__file__)), "templates")
|
||
|
|
}
|