Categorygithub.com/anhnmt/golang-telegram-simple
repositorypackage
0.1.3
Repository: https://github.com/anhnmt/golang-telegram-simple.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

golang-telegram-simple

go get -u github.com/anhnmt/golang-telegram-simple
package main

import (
    "fmt"

    telegram "github.com/anhnmt/golang-telegram-simple"
)

func main() {
    fmt.Println("Hello, world!")

    telegram.
        SetEnabled(true).
        SetEnv("DEV").
        SetToken("abc:123456789").
        SetChatId(-123456789).
        OK("Hello, world!")
}