11 lines
254 B
Python
11 lines
254 B
Python
# -*- 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']
|