gofmt -s -w

This commit is contained in:
jim teeuwen 2011-12-07 13:46:06 +01:00
parent e44514e2cb
commit 45d4452c15
2 changed files with 3 additions and 3 deletions

View File

@ -12,9 +12,9 @@ Build & run with:
import ( import (
"fmt" "fmt"
rss "github.com/jteeuwen/go-pkg-rss"
"os" "os"
"time" "time"
rss "github.com/jteeuwen/go-pkg-rss"
) )
func main() { func main() {

View File

@ -27,11 +27,11 @@ package feeder
import ( import (
"errors" "errors"
"time"
xmlx "github.com/jteeuwen/go-pkg-xmlx"
"fmt" "fmt"
xmlx "github.com/jteeuwen/go-pkg-xmlx"
"strconv" "strconv"
"strings" "strings"
"time"
) )
type ChannelHandler func(f *Feed, newchannels []*Channel) type ChannelHandler func(f *Feed, newchannels []*Channel)