aboutsummaryrefslogtreecommitdiff
path: root/lib/sql/sql.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sql/sql.go')
-rw-r--r--lib/sql/sql.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/sql/sql.go b/lib/sql/sql.go
new file mode 100644
index 00000000..d2024ed5
--- /dev/null
+++ b/lib/sql/sql.go
@@ -0,0 +1,14 @@
+// Copyright 2020, Shulhan <m.shulhan@gmail.com>. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//
+// Package sql is an extension to standard library "database/sql.DB" that
+// provide common functionality across DBMS.
+//
+package sql
+
+const (
+ DriverNameMysql = "mysql"
+ DriverNamePostgres = "postgres"
+)