From 63f9ecda55cfc98b3548fbd5cbe0f9e4cc52951f Mon Sep 17 00:00:00 2001 From: tiff Date: Sat, 28 Dec 2024 20:10:04 -0500 Subject: [PATCH] Update something --- src/content/blog/go-project-structure.md | 1 - src/content/blog/gurl-cli.md | 9 ++++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/content/blog/go-project-structure.md b/src/content/blog/go-project-structure.md index d191500..c00e7cb 100644 --- a/src/content/blog/go-project-structure.md +++ b/src/content/blog/go-project-structure.md @@ -2,7 +2,6 @@ pubDatetime: 2024-04-01 title: Go Project Structure for gURL description: Helpful Go tip. -featured: true --- Over the past week I've been working on changing the structure of gURL. diff --git a/src/content/blog/gurl-cli.md b/src/content/blog/gurl-cli.md index 78897f1..c46a545 100644 --- a/src/content/blog/gurl-cli.md +++ b/src/content/blog/gurl-cli.md @@ -2,7 +2,6 @@ pubDatetime: 2024-03-24 title: "gURL: A cURL Wrapper Written in Go" description: Moving on from frontend to something new. -featured: true --- Briefly: I am writing a CLI tool that fetches info from GitHub's REST API as a wrapper around cURL. @@ -26,11 +25,11 @@ var defaultBaseURL = "https://github.com/" // Client is a GitHub scraping client. type Client struct { - *http.Client + *http.Client - // base URL for github.com pages. Exposed primarily for testing. Also - // used for saving and restoring cookies on the Client. - baseURL *url.URL + // base URL for github.com pages. Exposed primarily for testing. Also + // used for saving and restoring cookies on the Client. + baseURL *url.URL } ```