From f00c41fd4e6af8cd0db80c118a3bb4abef09604e Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 18 Oct 2024 17:54:26 -0300 Subject: Shoehorn project into default golang skeleton structure --- src/acudego.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/acudego.go') diff --git a/src/acudego.go b/src/acudego.go index 8820356..c9acbcd 100644 --- a/src/acudego.go +++ b/src/acudego.go @@ -23,7 +23,7 @@ import ( /* #include -#include +#include void stepTrampoline(sqlite3_context *, int, sqlite3_value **); void doneTrampoline(sqlite3_context *); @@ -1053,9 +1053,9 @@ const ( columnTimestamp string = "timestamp" ) -const driverName = "acudego" +const DriverName = "acude" func init() { - sql.Register(driverName, &SQLiteDriver{}) + sql.Register(DriverName, &SQLiteDriver{}) } // Version returns SQLite library version information. -- cgit v1.2.3