From 8225bb2b822cc7e4141637140fc26e03935781e3 Mon Sep 17 00:00:00 2001 From: Daniel Theophanes Date: Sat, 2 Mar 2013 22:45:38 -0800 Subject: [PATCH] Add note to Init. --- stdservice/stdservice.go | 1 + 1 file changed, 1 insertion(+) diff --git a/stdservice/stdservice.go b/stdservice/stdservice.go index 321a8f9..6f38ff6 100644 --- a/stdservice/stdservice.go +++ b/stdservice/stdservice.go @@ -20,6 +20,7 @@ type Config struct { // Init is optional and may be nil. // If Init returns an error, that error is logged to the logger // and the service start is aborted. + // Init should not block. Init func(c *Config) error s service.Service