Files
goext/scn/scn.go
Mike Schwörer 0f28e3d11b
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m46s
v0.0.618 remove deprecated param 'user_id' from scn.send()
2025-12-06 22:20:02 +01:00

12 lines
134 B
Go

package scn
type Connection struct {
token string
}
func New(token string) *Connection {
return &Connection{
token: token,
}
}