headless9/types.go

13 lines
140 B
Go
Raw Normal View History

2022-10-22 23:23:24 -04:00
package main
import (
"os"
"time"
)
type Service struct {
ProcessHandle *os.Process
StartupArgs []string
StartTime time.Time
}