12 lines
155 B
Python
12 lines
155 B
Python
import json_loader
|
|
import utils
|
|
|
|
def main():
|
|
fcts = json_loader.load_fcts("BMExports.json")
|
|
|
|
print("Done")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|