This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type MrRobotMessage struct { | |
ArchivePath string `json:"archivepath"` | |
Project string `json:"project"` | |
EngineName string `json:"enginename"` | |
EnginePlatform string `json:"engineplatform"` | |
EngineVersion string `json:"engineversion"` | |
BuildrID string `json:"buildrid"` | |
BuildID string `json:"buildid"` | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Messenger interface { | |
GetMessage() (*BuildServiceRequest, error) | |
DeleteMessage() error | |
} | |
type MessengerImpl struct { | |
session *sqsiface.SQSAPI // Need to use amazon's interface | |
message *sqs.Message | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Skill Improvement | |
https://www.freecodecamp.com/ | |
https://javascript30.com/ | |
Algorithm Improvement: | |
https://www.topcoder.com/my-dashboard | |
Raw Code Reads: |
NewerOlder