Skip to content

Commit

Permalink
Make ServiceShape input/output mutable
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Sep 21, 2024
1 parent a591088 commit 81d3400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/SotoSmithy/Shapes/ServiceShapes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ public class OperationMemberShape: Shape {
public class OperationShape: Shape {
public static let type = "operation"
public var traits: TraitList?
public let input: MemberShape?
public let output: MemberShape?
public var input: MemberShape?
public var output: MemberShape?
public let errors: [MemberShape]?

public func validate(using model: Model) throws {
Expand Down

0 comments on commit 81d3400

Please sign in to comment.