Mike Schwörer
ef78b7467b
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m16s
14 lines
180 B
Go
14 lines
180 B
Go
package scn
|
|
|
|
type Connection struct {
|
|
uid string
|
|
token string
|
|
}
|
|
|
|
func New(userid string, token string) *Connection {
|
|
return &Connection{
|
|
uid: userid,
|
|
token: token,
|
|
}
|
|
}
|