Initial split migration

This commit is contained in:
henrik
2024-12-13 18:04:00 +01:00
parent b4b96b3f4e
commit 2525790303
23 changed files with 281 additions and 277 deletions

View File

@@ -0,0 +1,7 @@
namespace Pushy.Domain;
public interface ILinkGenerator : IGrainWithGuidKey
{
[Alias("GenerateLink")]
public ValueTask<LinkResult> GenerateTextShare([Immutable] string text);
}