feat: print a little message when the service starts
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2023-06-05 19:19:32 +02:00
parent 5972dd055e
commit bd72e06825
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 0 deletions

View File

@ -42,5 +42,7 @@ func main() {
if err != nil {
log.Fatalf("Could not create cron job: %s\n", err)
}
log.Println("DB backup service started.")
cr.Run()
}