shad-go/keylock/keylock.go

14 lines
234 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-03-14 12:11:46 +00:00
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")
}