# check compatibility
import py4web

assert py4web.check_compatible("1.20250328.1")

# by importing controllers you expose the actions defined in it
from . import controllers
# by importing db you expose it to the _dashboard/dbadmin
from .models import db

# optional parameters
__version__ = "0.0.0"
__author__ = "you <you@example.com>"
__license__ = "anything you want"
