LordXido commited on
Commit
a8d8b1e
·
verified ·
1 Parent(s): 470033e

Create utils.py

Browse files
Files changed (1) hide show
  1. utils.py +8 -0
utils.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ def load_data_sources():
4
+ """
5
+ Loads CodexByte commodity configuration.
6
+ """
7
+ with open("codexbyte_db.json", "r") as f:
8
+ return json.load(f)