Initial commit

This commit is contained in:
zavolo
2026-06-05 00:53:35 +03:00
commit e59e4424a4
7686 changed files with 352420 additions and 0 deletions
@@ -0,0 +1,23 @@
global using EventFlow.Aggregates;
global using EventFlow.Exceptions;
global using EventFlow.Sagas;
global using Moq;
global using MyTelegram.Domain.Aggregates.AppCode;
global using MyTelegram.Domain.Aggregates.Channel;
global using MyTelegram.Domain.Aggregates.Messaging;
global using MyTelegram.Domain.Aggregates.User;
global using MyTelegram.Domain.Events.AppCode;
global using MyTelegram.Domain.Events.Channel;
global using MyTelegram.Domain.Events.Messaging;
global using MyTelegram.Domain.Events.User;
global using MyTelegram.Domain.Extensions;
global using MyTelegram.Domain.Sagas;
global using MyTelegram.Domain.Sagas.Identities;
global using MyTelegram.TestBase;
global using Shouldly;
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.Threading;
global using System.Threading.Tasks;
global using Xunit;