service: update comments.

This commit is contained in:
Daniel Theophanes
2015-01-13 21:54:35 -08:00
parent bc48b26bdb
commit 2b410d62be
8 changed files with 39 additions and 8 deletions
+5 -7
View File
@@ -1,3 +1,7 @@
// Copyright 2015 Daniel Theophanes.
// Use of this source code is governed by a zlib-style
// license that can be found in the LICENSE file.package service
package service
import (
@@ -5,11 +9,5 @@ import (
)
func TestPlatformName(t *testing.T) {
s, err := NewServiceConfig(&Config{
Name: "Test",
})
if err != nil {
t.Errorf("Failed to create service: %v", err)
}
t.Logf("Platform is %s", s.String())
t.Logf("Platform is %v", Local)
}