Go
Creating the TEN App
tman install app default_app_go
cd default_app_go
tman install protocol msgpack
tman install extension_group default_extension_groupInstalling a Default TEN Extension
tman install extension default_extension_goDeclaring the Prebuilt Graph for Auto-Start
"predefined_graphs": [
{
"name": "default",
"auto_start": true,
"nodes": [
{
"type": "extension_group",
"name": "default_extension_group",
"addon": "default_extension_group"
},
{
"type": "extension",
"name": "default_extension_go",
"addon": "default_extension_go",
"extension_group": "default_extension_group"
}
]
}
]Building the App
Starting the App
Debugging
Debugging Go Code
Debugging C Code
CGO
Generated Code
Incomplete Type
What happens if you use the incomplete type in Go?
Rules for Using C.uintptr_t Instead of a Pointer to an Opaque Struct
Last updated