9 lines
76 B
Go
9 lines
76 B
Go
|
module builtin
|
||
|
|
||
|
struct Option {
|
||
|
data voidptr
|
||
|
error string
|
||
|
ok bool
|
||
|
}
|
||
|
|