23 lines
671 B
Python
23 lines
671 B
Python
#coding: utf-8
|
|
#-------------------------------------------------------------------
|
|
# YakPanel
|
|
#-------------------------------------------------------------------
|
|
# Copyright (c) 2015-2099 YakPanel(www.yakpanel.com) All rights reserved.
|
|
#-------------------------------------------------------------------
|
|
# Author: hwliang <hwl@yakpanel.com>
|
|
#-------------------------------------------------------------------
|
|
|
|
#------------------------------
|
|
# sqlite模型
|
|
#------------------------------
|
|
import os,sys,re,json,shutil,psutil,time
|
|
from databaseModelV2.base import databaseBase
|
|
import public
|
|
|
|
|
|
class main(databaseBase):
|
|
|
|
def get_list(self,args):
|
|
|
|
return []
|