Move front and back into internal

This commit is contained in:
Brandon Dyck 2020-10-11 12:21:17 -06:00
parent 1d8694846f
commit 6c885d25c2
6 changed files with 4 additions and 5 deletions

View File

@ -9,7 +9,7 @@ import (
"github.com/matryer/is" "github.com/matryer/is"
"github.com/rickb777/date" "github.com/rickb777/date"
"gitlab.codemonkeysoftware.net/b/henwen/back" "gitlab.codemonkeysoftware.net/b/henwen/internal/back"
) )
func TestNewMemoryStore(t *testing.T) { func TestNewMemoryStore(t *testing.T) {

View File

@ -14,7 +14,7 @@ import (
hm "gitlab.codemonkeysoftware.net/b/hatmill" hm "gitlab.codemonkeysoftware.net/b/hatmill"
a "gitlab.codemonkeysoftware.net/b/hatmill/attribute" a "gitlab.codemonkeysoftware.net/b/hatmill/attribute"
e "gitlab.codemonkeysoftware.net/b/hatmill/element" e "gitlab.codemonkeysoftware.net/b/hatmill/element"
"gitlab.codemonkeysoftware.net/b/henwen/back" "gitlab.codemonkeysoftware.net/b/henwen/internal/back"
) )
const ( const (

View File

@ -5,8 +5,8 @@ import (
"log" "log"
"net/http" "net/http"
"gitlab.codemonkeysoftware.net/b/henwen/back" "gitlab.codemonkeysoftware.net/b/henwen/internal/back"
"gitlab.codemonkeysoftware.net/b/henwen/front" "gitlab.codemonkeysoftware.net/b/henwen/internal/front"
) )
func main() { func main() {

View File

@ -2,7 +2,6 @@ Essential:
------------ ------------
Show response after submission Show response after submission
Add a schema ID to the DB Add a schema ID to the DB
Move front and back into internal
Require earliest and latest dates for creation Require earliest and latest dates for creation
Ensure latest date is at least earliest date Ensure latest date is at least earliest date
Ensure date span is within a maximum Ensure date span is within a maximum