forked from mirror/go-sqlite3
11 lines
330 B
Go
11 lines
330 B
Go
// Copyright (C) 2018 The Go-SQLite3 Authors.
|
|
//
|
|
// Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package sqlite3
|
|
|
|
// SQLiteDriver is exported to make the driver directly accessible.
|
|
// In general the driver is used via the database/sql package.
|
|
type SQLiteDriver struct{}
|