16 lines
288 B
Go
16 lines
288 B
Go
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"
|