diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-11 19:44:13 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-11 19:44:13 -0400 |
commit | 47aa53bd369014b0788f18a605e7347801f6c31d (patch) | |
tree | d24e083ed102c457854e00e13e3e767d71a272c1 /routers/repo/repo.go | |
parent | 7d07b58114199f682a9caa059f239e24c820dc41 (diff) | |
download | gitea-47aa53bd369014b0788f18a605e7347801f6c31d.tar.gz gitea-47aa53bd369014b0788f18a605e7347801f6c31d.zip |
Add search commits
Diffstat (limited to 'routers/repo/repo.go')
-rw-r--r-- | routers/repo/repo.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/routers/repo/repo.go b/routers/repo/repo.go index 1ae4a3740a..3859b43e87 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -425,3 +425,7 @@ func Action(ctx *middleware.Context, params martini.Params) { "ok": true, }) } + +func Import(ctx *middleware.Context, params martini.Params) { + ctx.ResponseWriter.Write([]byte("not done yet")) +} |