You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lntop/app/app.go

18 lines
292 B
Go

package app
import (
"github.com/edouardparis/lntop/config"
"github.com/edouardparis/lntop/logging"
"github.com/edouardparis/lntop/network"
)
type App struct {
Config *config.Config
Logger logging.Logger
Network *network.Network
}
func Load() (*App, error) {
return &App{}, nil
}