shad-go/keylock/keylock.go
2020-03-14 15:11:46 +03:00

13 lines
233 B
Go

// +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")
}