vkgo

module
v1.0.0-alpha.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 5, 2023 License: MIT

README

Bots Community

Flexible and high-performance VK API module Go

Instalation

go get github.com/botscommunity/vkgo

Getting started

Examples of working bots can be seen in the catalog /samples

A simple example of a LongPoll API Bot:

package main

import (
  "github.com/botscommunity/vkgo/api"
  "github.com/botscommunity/vkgo/longpoll"
  "github.com/botscommunity/vkgo/scene"
  "github.com/botscommunity/vkgo/update"
  "os"
)

func main() {
  bot, err := api.New(os.Getenv("TOKEN"))
  if err != nil {
	  panic(err)
  }

  messageScene := scene.Message(func(bot *api.Bot, message update.Message) {
    bot.SendMessage(message.ChatID, "echo message: "+message.Text)
  })

  longpoll.Start(bot, messageScene)
}

Help in solving problems

Don't know how to solve your problem? Ask the programmers from our community. There is a chance that they have already dealt with this problem and are ready to help you

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL