shad-go/keylock/keylock.go
2022-02-10 22:06:57 +00:00

14 lines
254 B
Go

//go:build !solution
// +build !solution
package keylock
type KeyLock struct{}
func New() *KeyLock {
panic("implement me")
}
func (l *KeyLock) LockKeys(keys []string, cancel <-chan struct{}) (canceled bool, unlock func()) {
panic("implement me")
}