-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds parsing of the yet-to-be-ratified service definitions and code generation in TypeScript using the xRPC layer being built
- Loading branch information
Showing
19 changed files
with
437 additions
and
278 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION="2.5.1" | ||
VERSION="2.5.2" | ||
MAJOR=2 | ||
MINOR=5 | ||
PATCH=1 | ||
PATCH=2 |
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
namespace Core.Generators | ||
{ | ||
/// <summary> | ||
/// An enum that defines which parts of a service are generated | ||
/// </summary> | ||
public enum XrpcServices | ||
{ | ||
/// <summary> | ||
/// Indicates no service code should be generated | ||
/// </summary> | ||
None = 0, | ||
/// <summary> | ||
/// Indicates only client service code should be generated | ||
/// </summary> | ||
Client = 1, | ||
/// <summary> | ||
/// Indicates only server service code should be generated | ||
/// </summary> | ||
Server = 2, | ||
/// <summary> | ||
/// Indicates both client and server service code should be generated | ||
/// </summary> | ||
Both = 3 | ||
|
||
} | ||
} | ||
|
Oops, something went wrong.