mirror of
https://github.com/simon-ding/polaris.git
synced 2026-02-28 06:30:45 +08:00
13 lines
162 B
Go
13 lines
162 B
Go
package utils
|
|
|
|
import (
|
|
"polaris/log"
|
|
"testing"
|
|
)
|
|
|
|
func TestLink2Magnet(t *testing.T) {
|
|
s, err := Link2Magnet("")
|
|
log.Errorf("%v", err)
|
|
log.Infof("%v", s)
|
|
}
|