8 lines
197 B
Python
8 lines
197 B
Python
from applications.view.system import register_system_bps
|
|
from applications.view.plugin import register_plugin_views
|
|
|
|
|
|
def init_bps(app):
|
|
register_system_bps(app)
|
|
register_plugin_views(app)
|