Skip to content

Commit

Permalink
docs: update gojudge-mid code struct
Browse files Browse the repository at this point in the history
  • Loading branch information
love98ooo committed Oct 25, 2024
1 parent 744a706 commit fba7669
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions docs/dev-guide/backend/judge-mid/gojudge-mid.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,27 @@ Go-judge 中间件是搭建了 sastoj 和 Go-judge 服务直接的桥梁,将 s
│   ├── main.go
│   ├── wire.go
│   └── wire_gen.go
└── internal
├── biz
│   ├── biz.go
│   ├── gojudge.go
│   ├── gojudge_test.go
│   ├── loop.go
│   ├── middleware.go
│   ├── middleware_test.go
│   ├── simple.go
│   └── subtasks.go
├── conf
│   ├── conf.pb.go
│   └── conf.proto
└── data
├── data.go
├── file.go
└── language.go
├── internal
│   ├── biz
│   │   ├── biz.go
│   │   └── submission.go
│   ├── conf
│   │   ├── conf.pb.go
│   │   └── conf.proto
│   ├── data
│   │   ├── data.go
│   │   └── submission.go
│   ├── server
│   │   ├── server.go
│   │   └── submission.go
│   └── service
│   ├── service.go
│   └── submission.go
└── pkg
└── gojudge
├── client.go
├── command.go
└── state.go
```

## 配置文件结构
Expand Down

0 comments on commit fba7669

Please sign in to comment.