diff --git a/avalanche/app.go b/avalanche/app.go deleted file mode 100644 index 60fbb01..0000000 --- a/avalanche/app.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (C) 2024, Ava Labs, Inc. All rights reserved. -// See the file LICENSE for licensing terms. - -package avalanche - -import "github.com/ava-labs/avalanchego/utils/logging" - -type Avalanche struct { - Log logging.Logger - //baseDir string - //Conf *config.Config - //Prompt prompts.Prompter - //Apm *apm.APM - //ApmDir string - //Downloader Downloader -} - -func New() *Avalanche { - return &Avalanche{} -} - -func (app *Avalanche) Setup(log logging.Logger) { - //app.baseDir = baseDir - app.Log = log - //app.Conf = conf - //app.Prompt = prompt - //app.Downloader = downloader -}