From 03f1a7389afeadf9aa2b1d62a38e5cb0a2a7e60d Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 13 Dec 2025 01:17:52 +0100 Subject: Initial implementation --- Sources/WmapParser/Group.swift | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Sources/WmapParser/Group.swift (limited to 'Sources/WmapParser/Group.swift') diff --git a/Sources/WmapParser/Group.swift b/Sources/WmapParser/Group.swift new file mode 100644 index 0000000..5204d45 --- /dev/null +++ b/Sources/WmapParser/Group.swift @@ -0,0 +1,4 @@ +/// A group of components. +public struct Group: Sendable, Equatable { + public let components: [String] +} -- cgit