Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m46s
12 lines
134 B
Go
12 lines
134 B
Go
package scn
|
|
|
|
type Connection struct {
|
|
token string
|
|
}
|
|
|
|
func New(token string) *Connection {
|
|
return &Connection{
|
|
token: token,
|
|
}
|
|
}
|