1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-23 20:32:32 +02:00

34 lines
506 B
Go
Raw Normal View History

2020-12-26 15:17:20 +00:00
package main
import (
"log"
"time"
"context"
"github.com/asim/go-micro/v3"
2020-12-26 15:17:20 +00:00
)
func main() {
// cancellation context
ctx, cancel := context.WithCancel(context.Background())
// shutdown after 5 seconds
go func() {
<-time.After(time.Second * 5)
log.Println("Shutdown example: shutting down service")
cancel()
}()
// create service
service := micro.NewService(
// with our cancellation context
micro.Context(ctx),
)
// init service
service.Init()
// run service
service.Run()
}