This repository has been archived on 2020-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
cmd/xorm/sqlite3.go

16 lines
317 B
Go

// Copyright 2017 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build sqlite3
package main
import (
_ "github.com/mattn/go-sqlite3"
)
func init() {
supportedDrivers["sqlite3"] = "github.com/mattn/go-sqlite3"
}