From fd86b75316368465f741eb6dd1d9531e48a2847f Mon Sep 17 00:00:00 2001 From: James Davidson Date: Sat, 19 Sep 2020 16:13:10 -0700 Subject: [PATCH] Format includes using goimports Modified by 'goimports -l -w'. --- mail.go | 9 +++++---- rss.go | 5 +++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/mail.go b/mail.go index faed9e3..44e59b6 100644 --- a/mail.go +++ b/mail.go @@ -2,14 +2,15 @@ package main import ( "fmt" - "github.com/c-14/grue/config" - "github.com/jaytaylor/html2text" - "github.com/mmcdole/gofeed" - "gopkg.in/gomail.v2" "io" "os/exec" "strings" "time" + + "github.com/c-14/grue/config" + "github.com/jaytaylor/html2text" + "github.com/mmcdole/gofeed" + "gopkg.in/gomail.v2" ) type Email struct { diff --git a/rss.go b/rss.go index aadf6c0..4964e44 100644 --- a/rss.go +++ b/rss.go @@ -2,11 +2,12 @@ package main import ( "fmt" - "github.com/c-14/grue/config" - "github.com/mmcdole/gofeed" "math" "os" "time" + + "github.com/c-14/grue/config" + "github.com/mmcdole/gofeed" ) type FeedFetcher struct {