You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
21 lines
438 B
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Author : xupingmao
|
|
@email : 578749341@qq.com
|
|
@Date : 2022-08-07 16:39:30
|
|
@LastEditors : xupingmao
|
|
@LastEditTime : 2022-08-07 17:14:25
|
|
@FilePath : /xnote/main.py
|
|
@Description : 安卓入口
|
|
"""
|
|
import os
|
|
|
|
# 切换工作目录
|
|
project_dir = os.path.dirname(__file__)
|
|
os.chdir(project_dir)
|
|
|
|
from xnote.core import xnote_app
|
|
xnote_app.main(boot_config_kw = dict(db_driver = "sqlite"))
|
|
|
|
|