Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
# check compatibility
import py4web
assert py4web.check_compatible("0.1.20190709.1")
# by importing db you expose it to the _dashboard/dbadmin
from . models import db
# by importing controllers you expose the actions defined in it
from . import controllers
# optional parameters
__version__ = "0.0.0"
__author__ = "you "
__license__ = "anything you want"
# check compatibility
import py4web
assert py4web.check_compatible("0.1.20190709.1")
# by importing db you expose it to the _dashboard/dbadmin
from .models import db
# by importing controllers you expose the actions defined in it
from . import controllers
# optional parameters
__version__ = "0.0.0"
__author__ = "you "
__license__ = "anything you want"