| 1234567891011121314151617 |
- #%RAML 1.0
- title : SEEC-I-API
- version : 1.0.0
- baseUri : http://seeci.cn/api
- mediaType : application/json
- types : !include types/index.raml
- traits : !include traits/index.raml
- /record : !include ./routes/record.raml
- /user : !include ./routes/user.raml
- /auth : !include ./routes/auth.raml
- /commit : !include ./routes/commit.raml
- /course : !include ./routes/course.raml
- /exam : !include ./routes/exam.raml
- /problem : !include ./routes/problem.raml
- /result : !include ./routes/result.raml
- /statistic : !include ./routes/statistic.raml
|