blob: eedff5eb6a12149528573530facbba8b740bd578 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package main
import (
"context"
"flag"
"log/slog"
"net/http"
"os"
"os/signal"
"time"
"git.gabrielgio.me/cerrado/pkg/config"
"git.gabrielgio.me/cerrado/pkg/handler"
"git.gabrielgio.me/cerrado/pkg/service"
"git.gabrielgio.me/cerrado/pkg/worker"
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill)
defer stop()
if err := run(ctx); err != nil {
slog.Error("Error", "error", err)
os.Exit(1)
}
}
func run(ctx context.Context) error {
var (
configPath = flag.String("config", "config.example.scfg", "File path for the configuration file")
)
flag.Parse()
// repositorie
configRepo, err := config.LoadConfigurationRepository(*configPath)
if err != nil {
return err
}
// services
gitService := service.NewGitService(configRepo)
handler, err := handler.MountHandler(gitService, configRepo)
if err != nil {
return err
}
serverTask := worker.NewServerTask(&http.Server{Handler: handler, Addr: "0.0.0.0:8080"})
pool := worker.NewTaskPool()
pool.AddTask("http-server", 5*time.Second, serverTask)
return pool.Start(ctx)
}
|