gitea-webhook/main.go
jolheiser 5e3c895f62
Refactor dirs
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-10-08 14:43:56 -05:00

9 lines
93 B
Go

package main
func main() {
go web()
ch := make(chan struct{}, 1)
go generate(ch)
<-ch
}