first commit

This commit is contained in:
2026-02-14 00:46:04 +08:00
commit 7ce1e58a6e
18 changed files with 2014 additions and 0 deletions

10
frontend/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
"""
前端模块包
"""
from frontend.react import init_react_project
from frontend.vue import init_vue_project
from frontend.tailwind import setup_tailwind
__all__ = ['init_react_project', 'init_vue_project', 'setup_tailwind']