Install Guide

Install Guide

Gogram requires Go 1.18 or later. download and install it from the official website.

You can install it using the following command:

go get github.com/amarnathcjd/gogram

Verify Install Version

To verify that you have installed Gogram correctly, you can run the following command:

package main
 
import (
    "fmt"
    "github.com/amarnathcjd/gogram/telegram"
)
 
func main() {
    fmt.Println(telegram.Version)
}

You should see the version of Gogram printed to the console.

Dependencies

Gogram has the following dependencies:

Next Steps