[ci skip] fix format.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-04-05 15:04:50 +08:00
parent 449ce80649
commit 1a6e697416
3 changed files with 6 additions and 8 deletions

View File

@ -49,8 +49,6 @@ func main() {
gopush.PushConf.Core.Port = *port
}
if err = gopush.InitLog(); err != nil {
log.Println(err)

View File

@ -1,9 +1,9 @@
package gopush
import (
"errors"
"github.com/Sirupsen/logrus"
"os"
"errors"
)
func InitLog() error {

View File

@ -1,8 +1,8 @@
package gopush
import (
"github.com/stretchr/testify/assert"
"github.com/Sirupsen/logrus"
"github.com/stretchr/testify/assert"
"testing"
)