Skip to content
Snippets Groups Projects
Select Git revision
  • c72d866033b4b048f6e0a693bbd14207dc4b0fdd
  • main default protected
2 results

binary_classification_workflow.py

Blame
  • plugin.go 391 B
    package webinterface
    
    import (
    	"github.com/iotaledger/goshimmer/plugins/analysis/webinterface/httpserver"
    	"github.com/iotaledger/goshimmer/plugins/analysis/webinterface/recordedevents"
    	"github.com/iotaledger/hive.go/node"
    )
    
    func Configure(plugin *node.Plugin) {
    	httpserver.Configure(plugin)
    	recordedevents.Configure(plugin)
    }
    
    func Run(plugin *node.Plugin) {
    	httpserver.Run(plugin)
    }