atproto tools in zig zat.dev
sdk atproto zig

fix: handle .other did method in resolver

+1
+1
src/internal/did_resolver.zig
··· 31 31 return switch (did.method()) { 32 32 .plc => try self.resolvePlc(did), 33 33 .web => try self.resolveWeb(did), 34 + .other => error.UnsupportedDidMethod, 34 35 }; 35 36 } 36 37