1
0
mirror of https://git.sdf.org/rudi/headless9.git synced 2026-03-22 13:27:29 +00:00

Add types

This commit is contained in:
2022-10-22 23:23:24 -04:00
parent e2224092f5
commit fe9d1bad47

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
}