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
import (
"github.com/pboehm/ddns/config"
"github.com/pboehm/ddns/hosts"
"bufio"
"errors"
"fmt"
"github.com/pboehm/ddns/config"
"github.com/pboehm/ddns/hosts"
"io"
"strings"
"time"

View File

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

View File

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

View File

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

View File

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