mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
497 B
24 lines
497 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from . import IDC, SystemUser, AdminUser, AssetGroup, Asset
|
|
|
|
__all__ = ['init_model', 'generate_fake']
|
|
|
|
|
|
def init_model():
|
|
for cls in [IDC, SystemUser, AdminUser, AssetGroup, Asset]:
|
|
if hasattr(cls, 'initial'):
|
|
cls.initial()
|
|
|
|
|
|
def generate_fake():
|
|
for cls in [IDC, SystemUser, AdminUser, AssetGroup, Asset]:
|
|
if hasattr(cls, 'generate_fake'):
|
|
cls.generate_fake()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pass
|