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

10
msp/msp.go Normal file
View File

@@ -0,0 +1,10 @@
package msp
var ()
func init() {
}
func MostSpecificPeriod(periods ...Period) (id string, err error) {
return
}

9
msp/msp_test.go Normal file
View File

@@ -0,0 +1,9 @@
package msp
import (
"testing"
)
//(periods ...Period) (id string, err error) {
func TestMostSpecificPeriod(t *testing.T) {
}

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"`
}