5 lines
91 B
Python
5 lines
91 B
Python
db_name = "databases/test.db"
|
|
|
|
def set_db_name(name):
|
|
global db_name
|
|
db_name = name |