Index page and post pages ready

This commit is contained in:
Senad Uka
2023-07-30 19:21:16 +02:00
parent 327e9caad7
commit b1561c4875
88 changed files with 273478 additions and 2 deletions

14
main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"sync"
"github.com/senaduka/cetvorke/cetgemini"
)
func main() {
waitgroup := &sync.WaitGroup{}
waitgroup.Add(1)
go cetgemini.StartServer(waitgroup)
waitgroup.Wait()
}