1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-17 20:28:06 +02:00
Asim Aslam d94936f6c9
v3 (#2104)
* v3

* revert plugins

* fixup some issues
2021-01-20 13:54:31 +00:00

34 lines
506 B
Go

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