Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- // +build sqlite
-
- // 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.
-
- package setting
-
- import (
- _ "github.com/mattn/go-sqlite3"
- )
-
- func init() {
- EnableSQLite3 = true
- SupportedDatabases = append(SupportedDatabases, "SQLite3")
- }
|