aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorzeripath2018-11-01 13:41:07 +0000
committertechknowlogick2018-11-01 09:41:07 -0400
commit7d9a191a3c78f7135e7ce3e314290e844fb7edfe (patch)
treee264b613f327b49d29054fa2cc1cf0f0a16ac9ad /main.go
parent00533d38702767bc25703968daaa87b30980d2c9 (diff)
Create AuthorizedKeysCommand (#5236)
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index a0a52c3ae..ccfc884b1 100644
--- a/main.go
+++ b/main.go
@@ -13,6 +13,7 @@ import (
"code.gitea.io/gitea/cmd"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
+
// register supported doc types
_ "code.gitea.io/gitea/modules/markup/csv"
_ "code.gitea.io/gitea/modules/markup/markdown"
@@ -48,6 +49,7 @@ arguments - which can alternatively be run by running the subcommand web.`
cmd.CmdAdmin,
cmd.CmdGenerate,
cmd.CmdMigrate,
+ cmd.CmdKeys,
}
app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
app.Action = cmd.CmdWeb.Action