status-go/cmd/library/const.go

16 lines
288 B
Go
Raw Normal View History

package main
const prelude = `package main
// #include <stdlib.h>
import "C"
import "unsafe"
import mobile "github.com/status-im/status-go/mobile"
func main() {}
`
const intType = "int"
const stringType = "string"
const unsafePointerType = "&{unsafe Pointer}"
const boolType = "bool"