1
0
Fork 0
neonmodem/system/hackernews/connect.go

17 lines
366 B
Go

package hackernews
func (sys *System) Connect(sysURL string) error {
// Credentials
credentials := make(map[string]string)
credentials["username"] = ""
credentials["password"] = ""
if sys.config == nil {
sys.config = make(map[string]interface{})
}
sys.config["url"] = "https://news.ycombinator.com"
sys.config["credentials"] = credentials
return nil
}