-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
73 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
pub mod get_collection_details; | ||
pub mod get_published_file; | ||
//! # Implements the `ISteamRemoteStorage` interface | ||
//! | ||
//! Primary interface for interacting with the Steam Workshop and User Generated Content (UGC). | ||
//! | ||
//! **Note:** This implementation is incomplete! The following endpoints are currently unimplemented | ||
//! | ||
//! - EnumerateUserSubscribedFiles (requires publisher key) | ||
//! - GetUGCFileDetails | ||
//! - SetUGCUsedByGC (requires publisher key) | ||
//! - SubscribePublishedFile (requires publisher key) | ||
//! - UnsubscribePublishedFile (requires publisher key) | ||
//! | ||
//! Endpoints that require a publisher key are not likely to be | ||
//! implemented in the near future, as they cannot be tested by developers. | ||
const INTERFACE: &str = "ISteamRemoteStorage"; | ||
|
||
pub mod get_collection_details; | ||
pub mod get_published_file; |