feat: order processing

feat: order commands result save/load
This commit is contained in:
Ilia Denisov
2026-02-20 17:44:41 +02:00
committed by GitHub
parent 0c0df976bd
commit 233c9ebc2a
26 changed files with 2028 additions and 385 deletions
+8
View File
@@ -167,3 +167,11 @@ func NewSendUnreachableDestinationError(arg ...any) error {
func NewSendShipOwnerHasNoPlanetsError(arg ...any) error {
return newGenericError(ErrSendShipOwnerHasNoPlanets, arg...)
}
func NewQuitCommandFollowedByCommandError(arg ...any) error {
return newGenericError(ErrInputQuitCommandFollowedByCommand, arg...)
}
func NewUnrecognizedCommandError(arg ...any) error {
return newGenericError(ErrInputUnrecognizedCommand, arg...)
}