aboutsummaryrefslogtreecommitdiff
path: root/_example/custom_driver_name/main.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-14 17:30:56 -0300
committerEuAndreh <eu@euandre.org>2024-08-14 17:30:56 -0300
commitd9fa98494c83c42cad978b0b1000c35524b8026b (patch)
tree810f83870cb349bf66b742a3875e4efcb4de3d4a /_example/custom_driver_name/main.go
parentRemove unused files (diff)
downloadgolite-d9fa98494c83c42cad978b0b1000c35524b8026b.tar.gz
golite-d9fa98494c83c42cad978b0b1000c35524b8026b.tar.xz
Remove most files from _example/
Diffstat (limited to '_example/custom_driver_name/main.go')
-rw-r--r--_example/custom_driver_name/main.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/_example/custom_driver_name/main.go b/_example/custom_driver_name/main.go
deleted file mode 100644
index 3148cae..0000000
--- a/_example/custom_driver_name/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package main
-
-import (
- "database/sql"
-
- _ "github.com/mattn/go-sqlite3"
-)
-
-func main() {
- for _, driver := range sql.Drivers() {
- println(driver)
- }
-}