1
0
mirror of https://github.com/fumiama/paper-manager.git synced 2026-06-06 16:30:23 +08:00

add README

This commit is contained in:
源文雨
2023-03-10 13:42:35 +08:00
parent e012089ab8
commit 30cd57ef76
3 changed files with 19 additions and 0 deletions

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# paper-manager
面向教师的试卷网络管理系统基于Golang+vben。
## 项目结构
项目由前端后端两大部分组成,没有中间件。
### frontend
基于`vben`编写前端页面并编译为静态文件以供`main.go`嵌入。
### backend
基于标准`http`不用重框架负责提供各种API。
### main.go
统合前后端为单一可执行文件静态访问交给前端API部分则转交后端处理。

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/fumiama/paper-manager
go 1.20

5
main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
}