0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-08-01 16:04:48 +02:00
gitea/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
2016-11-04 08:43:11 +01:00

10 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")
}