vibecoded inspector

This commit is contained in:
bird_egop
2026-06-09 01:46:57 +03:00
parent 70a5d0ef69
commit 325970374a
25 changed files with 1944 additions and 649 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace WeaLib;
public sealed record WeaParseResult(WeaFile? WeaFile = null, string? Error = null)
{
public bool IsSuccess => WeaFile != null;
}