share_go_code
Generate shareable URLs for Go code snippets to enable easy distribution and collaboration on programming examples.
Instructions
Share Go code and get a shareable URL
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| code | Yes | The Go code to share | 
Input Schema (JSON Schema)
{
  "properties": {
    "code": {
      "description": "The Go code to share",
      "type": "string"
    }
  },
  "required": [
    "code"
  ],
  "type": "object"
}