2021-08-24 22:17:09 +05:30
|
|
|
//go:build sqlite
|
2014-04-13 12:44:43 +05:30
|
|
|
|
2014-04-13 00:18:12 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-08-24 14:54:45 +05:30
|
|
|
package setting
|
2014-04-13 00:18:12 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
)
|
2014-04-13 01:54:09 +05:30
|
|
|
|
|
|
|
func init() {
|
|
|
|
EnableSQLite3 = true
|
2021-12-07 11:14:08 +05:30
|
|
|
SupportedDatabaseTypes = append(SupportedDatabaseTypes, "sqlite3")
|
2014-04-13 01:54:09 +05:30
|
|
|
}
|