package endpoints /* ---------------------------------------------------------------- * * IMPORTS * ---------------------------------------------------------------- */ import ( "ads/internal/core/logging" "ads/internal/setup" ) /* ---------------------------------------------------------------- * * ENDPOINT run * ---------------------------------------------------------------- */ func Run(fnameConfig string) error { logging.LogPlain(setup.Logo()) logging.LogWarn("Die Go-Implementierung ist noch unter Arbeit.") return nil }