21 lines
542 B
Go
21 lines
542 B
Go
|
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
|
||
|
}
|