ui/go/the/globals.go

19 lines
254 B
Go
Raw Permalink Normal View History

2018-11-22 00:01:17 +00:00
package the
import (
"cwtch.im/cwtch/app"
2018-11-28 22:14:02 +00:00
libPeer "cwtch.im/cwtch/peer"
)
2018-11-22 00:01:17 +00:00
var CwtchApp app.Application
var Peer libPeer.CwtchPeer
var CwtchDir string
2019-02-11 21:05:01 +00:00
type AckId struct {
ID string
2019-02-11 21:05:01 +00:00
Ack bool
Error bool
2019-02-11 21:05:01 +00:00
}
var AcknowledgementIDs map[string][]*AckId