Rejected |
---|
![]() |
Approved |
---|
![]() |
Just run
/usr/bin/swift <(curl -sL https://gist.githubusercontent.com/x0000ff/d0023bce5b85dd2f034330fb7a3c78f8/raw/7f465670da920ef4f6f6c9dc09920ca2c7dcf84d/clean-tags.sh)
import SwiftUI | |
struct Post: Decodable, Identifiable { | |
let id: Int | |
let title: String | |
} | |
protocol HttpClientProtocol { | |
func fetchPosts() async throws -> [Post] | |
} |