index.raml 597 B

1234567891011121314151617
  1. #%RAML 1.0
  2. title : SEEC-I-API
  3. version : 1.0.0
  4. baseUri : http://seeci.cn/api
  5. mediaType : application/json
  6. types : !include types/index.raml
  7. traits : !include traits/index.raml
  8. /record : !include ./routes/record.raml
  9. /user : !include ./routes/user.raml
  10. /auth : !include ./routes/auth.raml
  11. /commit : !include ./routes/commit.raml
  12. /course : !include ./routes/course.raml
  13. /exam : !include ./routes/exam.raml
  14. /problem : !include ./routes/problem.raml
  15. /result : !include ./routes/result.raml
  16. /statistic : !include ./routes/statistic.raml