File size: 703 Bytes
08c964e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # coding: utf-8
# +-------------------------------------------------------------------
# | aaPanel
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2099 aaPanel(www.aapanel.com) All rights reserved.
# +-------------------------------------------------------------------
# | Author: hwliang <hwl@aapanel.com>
# +-------------------------------------------------------------------
# --------------------------------
# 宝塔公共库
# --------------------------------
from .common import *
from .exceptions import *
def is_bind():
# if not os.path.exists('{}/data/bind.pl'.format(get_panel_path())): return True
return not not get_user_info()
|