From 9c45d7ed7f879b4c93fa9b0e2b259e56be13d606 Mon Sep 17 00:00:00 2001 From: Xeronith Date: Thu, 22 Dec 2022 20:17:36 +0330 Subject: [PATCH] feat(app): :sparkles: inbox post command placehoder --- greataped/app/commands/spi/post_to_inbox.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 greataped/app/commands/spi/post_to_inbox.go diff --git a/greataped/app/commands/spi/post_to_inbox.go b/greataped/app/commands/spi/post_to_inbox.go new file mode 100644 index 0000000..0982ddf --- /dev/null +++ b/greataped/app/commands/spi/post_to_inbox.go @@ -0,0 +1,10 @@ +package spi + +import ( + . "rail.town/infrastructure/components/constants" + . "rail.town/infrastructure/components/contracts" +) + +func PostToInbox(x IDispatcher, username string) (IPostToInboxResult, error) { + return nil, ERROR_NOT_IMPLEMENTED +}