This commit is contained in:
Philipp Böhm 2017-07-02 22:58:07 +02:00
parent 95db447b7c
commit 9f4442db79
5 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,11 @@
package backend package backend
import ( import (
"github.com/pboehm/ddns/config"
"github.com/pboehm/ddns/hosts"
"bufio" "bufio"
"errors" "errors"
"fmt" "fmt"
"github.com/pboehm/ddns/config"
"github.com/pboehm/ddns/hosts"
"io" "io"
"strings" "strings"
"time" "time"

View File

@ -1,11 +1,11 @@
package backend package backend
import ( import (
c "github.com/pboehm/ddns/config"
h "github.com/pboehm/ddns/hosts"
"bufio" "bufio"
"bytes" "bytes"
"errors" "errors"
c "github.com/pboehm/ddns/config"
h "github.com/pboehm/ddns/hosts"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"os" "os"
"testing" "testing"

View File

@ -1,11 +1,11 @@
package main package main
import ( import (
"flag"
"github.com/pboehm/ddns/backend" "github.com/pboehm/ddns/backend"
"github.com/pboehm/ddns/config" "github.com/pboehm/ddns/config"
"github.com/pboehm/ddns/hosts" "github.com/pboehm/ddns/hosts"
"github.com/pboehm/ddns/web" "github.com/pboehm/ddns/web"
"flag"
"log" "log"
"os" "os"
"strings" "strings"

View File

@ -1,8 +1,8 @@
package hosts package hosts
import ( import (
"github.com/pboehm/ddns/config"
"github.com/garyburd/redigo/redis" "github.com/garyburd/redigo/redis"
"github.com/pboehm/ddns/config"
"time" "time"
) )

View File

@ -1,9 +1,9 @@
package web package web
import ( import (
"fmt"
"github.com/pboehm/ddns/config" "github.com/pboehm/ddns/config"
"github.com/pboehm/ddns/hosts" "github.com/pboehm/ddns/hosts"
"fmt"
"gopkg.in/gin-gonic/gin.v1" "gopkg.in/gin-gonic/gin.v1"
"html/template" "html/template"
"log" "log"