feat(app): implement echo api

master
Xeronith 2022-10-31 14:29:50 +03:30
rodzic 907aa41cf2
commit e5e1c0ffe5
1 zmienionych plików z 2 dodań i 5 usunięć

Wyświetl plik

@ -1,10 +1,7 @@
package spi
import (
. "rail.town/infrastructure/components/constants"
. "rail.town/infrastructure/components/contracts"
)
import . "rail.town/infrastructure/components/contracts"
func Echo(x IDispatcher, document IDocument) (IEchoResult, error) {
return nil, ERROR_NOT_IMPLEMENTED
return x.NewEchoResult(document), nil
}