Initial commit

This commit is contained in:
2022-02-28 14:56:44 -08:00
commit 72c18dba1a
9 changed files with 83 additions and 0 deletions

9
msp/types.go Normal file
View File

@@ -0,0 +1,9 @@
package msp
import "time"
type Period struct {
StartTime time.Time `json:"startTime"`
EndTime time.Time `json:"endTime"`
Identifier string `json:"identifier"`
}