github.com/gitbundle/modules@v0.0.0-20231025071548-85b91c5c3b01/setting/database_sqlite.go (about) 1 // Copyright 2023 The GitBundle Inc. All rights reserved. 2 // Copyright 2017 The Gitea Authors. All rights reserved. 3 // Use of this source code is governed by a MIT-style 4 // license that can be found in the LICENSE file. 5 6 //go:build sqlite 7 8 // Copyright 2014 The Gogs Authors. All rights reserved. 9 // Use of this source code is governed by a MIT-style 10 // license that can be found in the LICENSE file. 11 12 package setting 13 14 import ( 15 _ "github.com/mattn/go-sqlite3" 16 ) 17 18 func init() { 19 EnableSQLite3 = false 20 // SupportedDatabaseTypes = append(SupportedDatabaseTypes, "sqlite3") 21 }