blob: da64266c8e36e616a85e30ec3496f32af13a6882 [file] [log] [blame]
package main
import (
"context"
"source.monogon.dev/metropolis/node/core/localstorage"
"source.monogon.dev/metropolis/node/core/roleserve"
"source.monogon.dev/metropolis/pkg/logtree"
)
// runDebugService runs the debug service if this is a debug build. Otherwise
// it does nothing.
func runDebugService(_ context.Context, _ *roleserve.Service, _ *logtree.LogTree, _ *localstorage.Root) error {
// This code is included in the production build, do nothing.
return nil
}