mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 23:25:29 +00:00
13 lines
170 B
Go
13 lines
170 B
Go
|
package proxy
|
||
|
|
||
|
/*
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void goCallback_cgo(char * json) {
|
||
|
printf("inside goCallback_cgo\n");
|
||
|
void goCallback(char *);
|
||
|
goCallback(json);
|
||
|
}
|
||
|
*/
|
||
|
import "C"
|