status-go/lib/main.go

13 lines
376 B
Go
Raw Normal View History

package main
import "github.com/status-im/status-go/api"
2018-06-19 07:49:24 +00:00
var statusBackend = api.NewStatusBackend()
// Technically this package supposed to be a lib for
// cross-compilation and usage with Android/iOS, but
// without main it produces cryptic errors.
// TODO(divan): investigate the cause of the errors
// and change this package to be a library if possible.
func main() {}