mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
11 lines
174 B
Python
11 lines
174 B
Python
from parsing.Parsing import DataMaze
|
|
|
|
|
|
def main() -> None:
|
|
print("Unit Testing for parsing:")
|
|
DataMaze.get_data("config.txt")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|