rename storage/msgstore to .../message
This commit is contained in:
parent
257167f0f6
commit
9f09a35f3b
6 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@ import (
|
|||
"git.sr.ht/~cco/go-scopes/core/action"
|
||||
"git.sr.ht/~cco/go-scopes/logging"
|
||||
"git.sr.ht/~cco/go-scopes/server"
|
||||
"git.sr.ht/~cco/go-scopes/storage/msgstore"
|
||||
msgstore "git.sr.ht/~cco/go-scopes/storage/message"
|
||||
"git.sr.ht/~cco/go-scopes/storage/sql"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Package forge implements a stack-based interpreter.
|
||||
// Package `forge` implements a stack-based interpreter.
|
||||
package forge
|
||||
|
||||
import (
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package msgstore
|
||||
package message
|
||||
|
||||
import (
|
||||
lib "git.sr.ht/~cco/go-scopes"
|
|
@ -5,7 +5,7 @@ import (
|
|||
|
||||
"git.sr.ht/~cco/go-scopes/common/testing"
|
||||
"git.sr.ht/~cco/go-scopes/core/message"
|
||||
"git.sr.ht/~cco/go-scopes/storage/msgstore"
|
||||
msgstore "git.sr.ht/~cco/go-scopes/storage/message"
|
||||
"git.sr.ht/~cco/go-scopes/storage/sql"
|
||||
_ "git.sr.ht/~cco/go-scopes/storage/sql/pgsql"
|
||||
_ "git.sr.ht/~cco/go-scopes/storage/sql/sqlite"
|
||||
|
@ -30,7 +30,7 @@ func TestPgsql(tb *tbase.T) {
|
|||
|
||||
func DoTests(t *testing.T, cfg *sql.Cfg, db *sql.Storage) {
|
||||
t.Run("base", func(t *testing.T) { BaseTest(t, cfg, db) })
|
||||
t.Run("msgstore", func(t *testing.T) { MsgstoreTest(t, cfg, db) })
|
||||
t.Run("message", func(t *testing.T) { MsgstoreTest(t, cfg, db) })
|
||||
}
|
||||
|
||||
type greet struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue