Documentation
¶
Overview ¶
Package all provides backward compatibility by importing all drivers at once.
This package is for existing projects that need a quick migration path. Import this package to register all available drivers automatically:
import _ "github.com/ncobase/ncore/data/all"
WARNING: This will include ALL drivers in your binary, resulting in larger binary sizes. For new projects, import only the drivers you need:
import (
_ "github.com/ncobase/ncore/data/postgres"
_ "github.com/ncobase/ncore/data/redis"
)
Click to show internal directories.
Click to hide internal directories.