Skip to content

Commit

Permalink
Merge pull request #106 from Matejkob/test-format
Browse files Browse the repository at this point in the history
Test format action
  • Loading branch information
Matejkob authored Jun 29, 2024
2 parents f8a6c15 + 7c2adf2 commit 0b93ae7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Examples/Sources/ViewModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ protocol ServiceProtocol {
var anyProtocol: any Codable { get set }
var secondName: String? { get }
var address: String! { get }
var added: () -> Void { get set }
var added: () -> Void { get set }
var removed: (() -> Void)? { get set }

func initialize(name: String, _ secondName: String?)
Expand All @@ -19,6 +19,16 @@ protocol ServiceProtocol {
func read() -> String!
}











final class ViewModel {
private let service: ServiceProtocol

Expand Down

0 comments on commit 0b93ae7

Please sign in to comment.