Initial commit

This commit is contained in:
CheddarCrisp 2024-01-09 17:32:46 -05:00
commit 3cc7d54907
9 changed files with 605 additions and 0 deletions

11
SDBD.Codec/Codec.cs Normal file
View file

@ -0,0 +1,11 @@
namespace SDBD;
public class Codec : ICodec {
public Document Decode(byte[] data) {
return new(new (), new byte[0]);
}
public byte[] Encode(Document document) {
return new byte[0];
}
}

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\SDBD.Contract\SDBD.Contract.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>