diff options
Diffstat (limited to 'models/models_sqlite.go')
-rw-r--r-- | models/models_sqlite.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/models/models_sqlite.go b/models/models_sqlite.go new file mode 100644 index 0000000000..02c3f58249 --- /dev/null +++ b/models/models_sqlite.go @@ -0,0 +1,11 @@ +// +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 models + +import ( + _ "github.com/mattn/go-sqlite3" +) |