v0.0.353 add scn.sendmessage
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m16s

This commit is contained in:
2024-01-04 12:38:03 +01:00
parent 0eda32b725
commit ef78b7467b
6 changed files with 213 additions and 3 deletions

13
scn/scn.go Normal file
View File

@@ -0,0 +1,13 @@
package scn
type Connection struct {
uid string
token string
}
func New(userid string, token string) *Connection {
return &Connection{
uid: userid,
token: token,
}
}