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