blob: 7c80564f57dfa106d4a4074f6c4586bc0a9c18ba (
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
|
package main
import (
"context"
"log/slog"
"net/http"
"os"
"os/signal"
"time"
"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 {
os.Exit(1)
}
}
func run(ctx context.Context) error {
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, _ *http.Request) {
if _, err := w.Write([]byte("Hello world!")); err != nil {
slog.Error("Error handling index", "error", err)
}
})
serverTask := worker.NewServerTask(&http.Server{Handler: mux, Addr: "0.0.0.0:8080"})
pool := worker.NewTaskPool()
pool.AddTask("http-server", 5*time.Second, serverTask)
return pool.Start(ctx)
}
|