removed debug output
This commit is contained in:
parent
28c80e3abe
commit
378e62fc38
1 changed files with 0 additions and 2 deletions
2
rss.go
2
rss.go
|
@ -5,7 +5,6 @@ package rss
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"fmt"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
@ -74,7 +73,6 @@ func Read(url string) (*Channel, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
fmt.Println(string(text))
|
|
||||||
|
|
||||||
var rss struct {
|
var rss struct {
|
||||||
Channel Channel `xml:"channel"`
|
Channel Channel `xml:"channel"`
|
||||||
|
|
Loading…
Reference in a new issue