mirror of
https://github.com/MikeWang000000/Natter.git
synced 2025-12-24 11:51:05 +08:00
14 lines
323 B
Python
14 lines
323 B
Python
def __manifest_add_modules():
|
|
import os
|
|
for name in os.listdir('.'):
|
|
if name.endswith('.py') and \
|
|
not name.startswith('.') and \
|
|
not name.startswith('_'):
|
|
module(name)
|
|
|
|
|
|
module('natter.py', base_path='../..')
|
|
__manifest_add_modules()
|
|
|
|
del __manifest_add_modules
|