1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-28 09:21:13 -05:00
forgejo/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
2016-11-04 08:43:11 +01:00

9 lines
198 B
Go

// +build !trace
package sqlite3
import "errors"
func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool) error {
return errors.New("This feature is not implemented")
}