Praxis_Bot/test_module.py
2021-05-13 16:33:27 -04:00

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()