1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-17 20:28:06 +02:00
2020-12-26 15:17:20 +00:00

34 lines
507 B
Go

package main
import (
"log"
"time"
"context"
"github.com/micro/go-micro/v2"
)
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()
}