Skip to content

Commit

Permalink
Rename loader class
Browse files Browse the repository at this point in the history
  • Loading branch information
SMillerDev committed Jan 21, 2024
1 parent 05bcba3 commit f4596a6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//
// PentabarfKit.swift
// PentabarfLoader.swift
//
//
// Created by Sean Molenaar on 07/01/2024.
//

import Foundation

public class PentabarfKit {
public static func loadConference(_ url: URL) async throws -> Conference? {
public class PentabarfLoader {
public static func fetchConference(_ url: URL) async throws -> Conference? {
print("📲 Getting schedule: \(url)")
let urlRequest = URLRequest(url: url)
let (data, response) = try await URLSession.shared.data(for: urlRequest)
Expand Down

0 comments on commit f4596a6

Please sign in to comment.