aboutsummaryrefslogtreecommitdiff
path: root/_example/custom_driver_name/main.go
diff options
context:
space:
mode:
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)
- }
-}