新增: gitea-client引入以及路由定义

This commit is contained in:
2022-06-21 17:39:11 +08:00
parent 3c2c742121
commit aefd6c08dc
7 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
class Api::V1::BaseController < ApplicationController
end

View File

@@ -0,0 +1,6 @@
class Api::V1::ReposController < Api::V1::BaseController
def index
render_ok
end
end