Files
MyGoNavi/cmd/optional-driver-agent/provider_iotdb.go
2026-06-13 18:23:56 +08:00

13 lines
195 B
Go

//go:build gonavi_iotdb_driver
package main
import "GoNavi-Wails/internal/db"
func init() {
agentDriverType = "iotdb"
agentDatabaseFactory = func() db.Database {
return &db.IoTDBDB{}
}
}