refactor: move postgres to pg package (#1781)

This commit is contained in:
Kevin Wan
2022-04-13 12:46:09 +08:00
committed by GitHub
parent 50de01fb49
commit ba8ac974aa
4 changed files with 31 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
package pg
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPostgreSql(t *testing.T) {
assert.NotNil(t, New("postgre"))
}