Browse Source

Add types

master
Gregory Rudolph 1 year ago
parent
commit
fe9d1bad47
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 12
      types.go

12
types.go

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