From fe9d1bad47fe64382740abf97426e36d7d72b1f6 Mon Sep 17 00:00:00 2001 From: Rudi Date: Sat, 22 Oct 2022 23:23:24 -0400 Subject: [PATCH] Add types --- types.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 types.go diff --git a/types.go b/types.go new file mode 100644 index 0000000..db8be4c --- /dev/null +++ b/types.go @@ -0,0 +1,12 @@ +package main + +import ( + "os" + "time" +) + +type Service struct { + ProcessHandle *os.Process + StartupArgs []string + StartTime time.Time +}