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 } ```