Pixel_GArt / app.py
zz912's picture
commit
5df7054
raw
history blame contribute delete
217 Bytes
# app.py
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "app")))
def main():
from main import launch_app
launch_app()
if __name__ == "__main__":
main()