storage/imapsql: Rename and clarify docs

See #212.
This commit is contained in:
fox.cpp 2020-03-05 21:03:57 +03:00
parent c777be4c95
commit e7d5418b88
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
8 changed files with 48 additions and 40 deletions

View file

@ -2,13 +2,13 @@ package main
import (
"github.com/foxcpp/maddy/internal/config"
"github.com/foxcpp/maddy/internal/storage/sql"
"github.com/foxcpp/maddy/internal/storage/imapsql"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
)
func sqlFromCfgBlock(root, node config.Node) (*sql.Storage, error) {
func sqlFromCfgBlock(root, node config.Node) (*imapsql.Storage, error) {
// Global variables relevant for sql module.
globals := config.NewMap(nil, root)
// None now...
@ -23,7 +23,7 @@ func sqlFromCfgBlock(root, node config.Node) (*sql.Storage, error) {
instName = node.Args[0]
}
mod, err := sql.New("sql", instName, nil, nil)
mod, err := imapsql.New("sql", instName, nil, nil)
if err != nil {
return nil, err
}
@ -31,5 +31,5 @@ func sqlFromCfgBlock(root, node config.Node) (*sql.Storage, error) {
return nil, err
}
return mod.(*sql.Storage), nil
return mod.(*imapsql.Storage), nil
}