goext/scn/scn.go

14 lines
180 B
Go
Raw Normal View History

2024-01-04 12:38:03 +01:00
package scn
type Connection struct {
uid string
token string
}
func New(userid string, token string) *Connection {
return &Connection{
uid: userid,
token: token,
}
}