Fixed INCR
Oops!
This commit is contained in:
24
backends/x/selectionclaim.go
Normal file
24
backends/x/selectionclaim.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package x
|
||||
|
||||
import "git.tebibyte.media/sashakoshka/tomo/data"
|
||||
|
||||
type selectionClaim struct {
|
||||
data data.Data
|
||||
scheduledDelete bool
|
||||
}
|
||||
|
||||
func (window *window) newSelectionClaim (data data.Data) *selectionClaim {
|
||||
return &selectionClaim{
|
||||
data: data,
|
||||
}
|
||||
}
|
||||
|
||||
func (claim *selectionClaim) idle () bool {
|
||||
// TODO
|
||||
}
|
||||
|
||||
func (claim *selectionClaim) handleSelectionRequest (
|
||||
// TODO
|
||||
) {
|
||||
// TODO
|
||||
}
|
||||
Reference in New Issue
Block a user