17 lines
258 B
Python
17 lines
258 B
Python
import config as config
|
|
|
|
|
|
import credentials
|
|
|
|
class Test_Module():
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def main(self):
|
|
print("[TEST Module]> test")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
testModule = Test_Module()
|
|
|
|
testModule.main() |