mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
10 lines
113 B
Go
10 lines
113 B
Go
package query
|
|
|
|
import "sync"
|
|
|
|
type Query struct {
|
|
query []rune
|
|
savedQuery []rune
|
|
mutex sync.Mutex
|
|
}
|