shad-go/keylock/keylock.go
2022-03-15 23:49:56 +03:00

13 lines
234 B
Go

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