initial commit

This commit is contained in:
Ikatono
2026-06-21 18:15:16 -05:00
commit ae41d1a273
126 changed files with 69109 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System.Text.Json.Serialization;
namespace Squiddler.Domain;
[JsonSourceGenerationOptions(WriteIndented = false)]
[JsonSerializable(typeof(PlayedWords))]
public partial class SquiddlerContext : JsonSerializerContext
{
// The generator builds the implementation automatically
}