-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from argon-chat/feature/grpc
Grpc Feature
- Loading branch information
Showing
8 changed files
with
106 additions
and
84 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,24 @@ | ||
// Global using directives | ||
|
||
global using System.Collections.Concurrent; | ||
global using System.ComponentModel; | ||
global using System.Reflection; | ||
global using System.Runtime.Serialization; | ||
global using System.Security.Cryptography; | ||
global using System.Text; | ||
global using ActualLab.Collections; | ||
global using ActualLab.Text; | ||
global using Argon; | ||
global using Argon.ArchetypeModel; | ||
global using Argon.Entities; | ||
global using Argon.Extensions; | ||
global using Argon.Features; | ||
global using Argon.Grains.Interfaces; | ||
global using Argon.Streaming; | ||
global using Argon.Streaming.Events; | ||
global using Argon.Users; | ||
global using MemoryPack; | ||
global using MessagePack; | ||
global using MessagePack; | ||
global using Microsoft.AspNetCore.Authorization; | ||
global using Microsoft.EntityFrameworkCore; | ||
global using Microsoft.Extensions.Options; |
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 @@ | ||
namespace Argon.Api; | ||
namespace Argon; | ||
|
||
public static class GlobalVersion | ||
{ | ||
|
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,3 @@ | ||
// Global using directives | ||
|
||
global using ActualLab.Serialization; |
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