From 9f2448bf17db20363d09ddd31a0d0ccea6a7abbe Mon Sep 17 00:00:00 2001 From: Armando Couto Date: Sun, 26 Mar 2023 01:03:07 -0300 Subject: [PATCH] Inclui a lib kardianos/service --- service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service.go b/service.go index 0233e3f..3cea3db 100644 --- a/service.go +++ b/service.go @@ -8,12 +8,12 @@ import ( type program struct{} func (p program) Start(s service.Service) error { - fmt.Println(s.String() + " started") + fmt.Println(s.String() + " Rodando!") return nil } func (p program) Stop(s service.Service) error { - fmt.Println(s.String() + " stopped") + fmt.Println(s.String() + " Parado!") return nil }