package database import ( "context" ) type Database interface { String() string Close() error Ping(ctx context.Context) error }