- Deleted SVG image file: server.svg - Removed global TypeScript file: global.ts - Deleted htmx configuration file: htmx.ts - Removed TypeScript type definitions: types.d.ts - Deleted Go file for serving static files: web.go - Removed package.json and TypeScript configuration: tsconfig.json Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
8 lines
142 B
Go
8 lines
142 B
Go
// SQL clients
|
|
package sqlclients
|
|
|
|
import (
|
|
_ "github.com/denisenkom/go-mssqldb"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
_ "github.com/lib/pq"
|
|
) |