telnyx-cli

(★ 127)

CLI SDK for the Telnyx API

File Explorer

  • .gitignore
  • .goreleaser.yml
  • .release-please-manifest.json
  • .stats.yml
  • CHANGELOG.md
  • go.mod
  • go.sum
  • LICENSE
  • README.md
  • release-please-config.json
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

go env

View Details ▼

Manage environment variables used by the Go toolchain.

go env

Show all environment variables:

go env {{GOPATH}}

Show a specific environment variable:

go env -w {{GOBIN}}={{path/to/directory}}

Set an environment variable to a value:

🔍

go install

View Details ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

// repository documentation