Skip to content

Commit 63a021b

Browse files
committed
wip
Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent afd61e3 commit 63a021b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

main.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ func main() {
1212
m.Get("/", func() string {
1313
return "Hello world!"
1414
})
15-
m.Post("/generate", binding.Json(ace.AceOptionsSpec{}), installer.GenerateInstaller)
15+
m.Post("/generate", binding.Json(ace.AceOptionsSpec{}), GenerateInstaller)
1616
m.Run()
1717
}
18+
19+
func GenerateInstaller(ctx *macaron.Context, opts ace.AceOptionsSpec) {
20+
21+
}

0 commit comments

Comments
 (0)