Skip to content

Instantly share code, notes, and snippets.

View tylerlantern's full-sized avatar

Nattapong Unaregul tylerlantern

View GitHub Profile
@msanford1540
msanford1540 / MultiPartFormData.swift
Last active July 30, 2023 19:14
Swift 5 Multipart form-data Support
//
// MultiPartFormData.swift
//
import Foundation
/* Example Call site: */
func upload(imageData: Data) async throws {
guard let url = URL(string: "https://example.com/upload") else { return }
var multipartFormData = MultipartFormData()