feat: Cleans up routes.

This commit is contained in:
2025-01-19 13:33:01 -05:00
parent 1c8748211c
commit b23dc6bf07
32 changed files with 958 additions and 1786 deletions

View File

@@ -34,9 +34,9 @@ public extension Vendor {
}
struct Update: Codable, Sendable {
public let name: String?
public let name: String
public init(name: String?) {
public init(name: String) {
self.name = name
}
}