mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-02 19:45:50 +00:00
15 lines
286 B
Go
15 lines
286 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"github.com/CityOfZion/neo-go/pkg/database"
|
||
|
"github.com/CityOfZion/neo-go/pkg/wire/protocol"
|
||
|
)
|
||
|
|
||
|
func setupDatabase(net protocol.Magic) (database.Database, error) {
|
||
|
db, err := database.New(net.String())
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return db, nil
|
||
|
}
|