mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-02 22:35:55 +01:00
31 lines
312 B
Python
31 lines
312 B
Python
|
import os
|
||
|
import platform
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def is_active():
|
||
|
return True
|
||
|
|
||
|
|
||
|
def get_name():
|
||
|
return "users"
|
||
|
|
||
|
|
||
|
def can_build():
|
||
|
return True
|
||
|
|
||
|
|
||
|
def get_opts():
|
||
|
return []
|
||
|
|
||
|
def get_flags():
|
||
|
|
||
|
return []
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|
||
|
|
||
|
def get_module_dependencies():
|
||
|
return [
|
||
|
"admin_panel",
|
||
|
]
|