loading up the forgejo repo on tangled to test page performance
at forgejo 277 B view raw
1//go:build sqlite 2 3// Copyright 2014 The Gogs Authors. All rights reserved. 4// SPDX-License-Identifier: MIT 5 6package setting 7 8import ( 9 _ "github.com/mattn/go-sqlite3" 10) 11 12func init() { 13 EnableSQLite3 = true 14 SupportedDatabaseTypes = append(SupportedDatabaseTypes, "sqlite3") 15}