mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-03 20:08:21 +00:00
14 lines
289 B
C#
14 lines
289 B
C#
|
|
using Esiur.Tests.Serialization;
|
|
using MessagePack;
|
|
|
|
MessagePack.MessagePackSerializer.DefaultOptions = MessagePackSerializerOptions.Standard
|
|
.WithCompression(MessagePackCompression.None); // optional; remove if you want raw size
|
|
|
|
|
|
|
|
var models = new ModelRunner();
|
|
models.Run();
|
|
|
|
|