mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2025-12-28 06:34:17 +00:00
The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed. - Closes https://github.com/bitmagnet-io/bitmagnet/issues/182 - Closes https://github.com/bitmagnet-io/bitmagnet/issues/70 - Closes https://github.com/bitmagnet-io/bitmagnet/issues/68 - Hopefully fixes https://github.com/bitmagnet-io/bitmagnet/issues/126
11 lines
191 B
Go
11 lines
191 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/99designs/gqlgen"
|
|
_ "github.com/abice/go-enum"
|
|
_ "github.com/vektra/mockery/v2"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
)
|