rename web.py to meshchat.py

This commit is contained in:
liamcottle 2024-07-09 17:38:45 +12:00
commit 879632a953
4 changed files with 11 additions and 11 deletions

View file

@ -4,7 +4,7 @@ from peewee import *
from playhouse.migrate import migrate as migrate_database, SqliteMigrator
latest_version = 2 # increment each time new database migrations are added
database = DatabaseProxy() # use a proxy object, as we will init real db client inside web.py
database = DatabaseProxy() # use a proxy object, as we will init real db client inside meshchat.py
migrator = SqliteMigrator(database)