From 3a58801094a72cd9374a5f3a492e41db906cea73 Mon Sep 17 00:00:00 2001 From: Daniel Theophanes Date: Mon, 1 Jun 2015 14:43:41 -0700 Subject: [PATCH] service: document CreateService. --- service.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/service.go b/service.go index cd4326a..d2d8e37 100644 --- a/service.go +++ b/service.go @@ -102,9 +102,10 @@ type Config struct { // System specific options. // * OS X - // - KeepAlive bool (true) - // - RunAtLoad bool (false) - // - UserService bool (false) // Install as a current user service. + // - KeepAlive bool (true) + // - RunAtLoad bool (false) + // - UserService bool (false) - Install as a current user service. + // - SessionCreate bool (false) - Create a full user session. Option KeyValue }