mirror of
https://github.com/simon-ding/polaris.git
synced 2026-02-06 23:21:00 +08:00
14 lines
224 B
Go
14 lines
224 B
Go
package prowlarr
|
|
|
|
import (
|
|
"polaris/log"
|
|
"testing"
|
|
)
|
|
|
|
func Test111(t *testing.T) {
|
|
c := New("", "http://10.0.0.8:9696/")
|
|
apis , err := c.GetIndexers()
|
|
log.Infof("errors: %v", err)
|
|
log.Infof("indexers: %+v", apis[0])
|
|
}
|