Initial commit
This commit is contained in:
commit
3cc7d54907
9 changed files with 605 additions and 0 deletions
11
SDBD.Codec/Codec.cs
Normal file
11
SDBD.Codec/Codec.cs
Normal 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];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue