Cleanup a few things

This commit is contained in:
Ben Kreeger 2025-08-19 18:42:27 -05:00
parent fd25540633
commit db9127e891
Signed by: kreeger
GPG Key ID: D5CF8683D4BE4B50
3 changed files with 2 additions and 6 deletions

View File

@ -5,7 +5,6 @@ services:
command: sleep infinity
depends_on: [browser]
volumes: [..:/workspace:cached, build-tmp:/workspace/.build/]
env_file: ../.env
browser:
image: selenium/standalone-chromium:latest
shm_size: 2gb

View File

@ -6,7 +6,8 @@ struct CLI: AsyncParsableCommand {
static let configuration: CommandConfiguration = .init(
commandName: "putty",
abstract: "A utility for getting comic data from GoComics.com.",
subcommands: [Scrape.self])
subcommands: [Scrape.self],
)
}
struct Scrape: AsyncParsableCommand {

View File

@ -113,10 +113,6 @@ public final class PageFetcher {
}
}
// MARK: - Errors
// MARK: - Usage Example
public extension PageFetcher {
/// Convenience method to fetch GoComics A-Z page
func fetchAToZ() async throws -> String {