diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-08-09 21:11:52 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-08-09 21:12:03 -0400 |
| commit | 9d5d130038ed90564c3acfb2fd2ff64e3d7b0bd9 (patch) | |
| tree | a95d63e240f0b63ffa4ff2ad3571fa45165b5708 /steam/steam.go | |
| parent | c202f2eca32e1ab2e313417168351df1c58ee062 (diff) | |
| download | steam-export-9d5d130038ed90564c3acfb2fd2ff64e3d7b0bd9.tar.gz steam-export-9d5d130038ed90564c3acfb2fd2ff64e3d7b0bd9.tar.xz | |
Fix up cli. Continue fixing up the library and web app. Initial API spec
Diffstat (limited to 'steam/steam.go')
| -rw-r--r-- | steam/steam.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/steam/steam.go b/steam/steam.go index c477191..ae69020 100644 --- a/steam/steam.go +++ b/steam/steam.go @@ -12,8 +12,9 @@ import ( ) var ( - E_GameDoesNotExist = errors.New("Game does not exist") - E_BadURI = errors.New("The URI supplied is not understood") + E_GameDoesNotExist = errors.New("Game does not exist") + E_BadURI = errors.New("The URI supplied is not understood") + E_OperationConflict = errors.New("Another conflicting job is running on this game right now") ) // Library is used to represent the steam library, the Games map is populated |
