Add types

This commit is contained in:
Rudi 2022-10-22 23:23:24 -04:00
parent e2224092f5
commit fe9d1bad47
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
1 changed files with 12 additions and 0 deletions

12
types.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"os"
"time"
)
type Service struct {
ProcessHandle *os.Process
StartupArgs []string
StartTime time.Time
}