Settings and final newlines

This commit is contained in:
CheddarCrisp 2024-01-09 17:46:34 -05:00
parent 3cc7d54907
commit 0b0d074cf6
4 changed files with 7 additions and 3 deletions

View file

@ -3,4 +3,4 @@ namespace SDBD;
public record Document(
Dictionary<string, string> Metadata,
byte[] Data
);
);

View file

@ -3,4 +3,4 @@
public interface ICodec {
Document Decode(byte[] data);
byte[] Encode(Document document);
}
}