1//go:build sqlite 2 3// Copyright 2014 The Gogs Authors. All rights reserved. 4// SPDX-License-Identifier: MIT 5 6packagesetting 7 8import( 9_"github.com/mattn/go-sqlite3"10)1112funcinit(){13EnableSQLite3=true14SupportedDatabaseTypes=append(SupportedDatabaseTypes,"sqlite3")15}