rename project to gemlog-cli

This commit is contained in:
Travis Shears 2025-10-04 19:14:08 +02:00
parent 02ed95a612
commit 928c82536f
2 changed files with 1 additions and 6 deletions

View file

@ -104,8 +104,6 @@ func ReadGemlogEntry(config *Config, id string) (GemlogEntry, error) {
}
var rawData struct {
// ID int `json:"_id"`
// Rev int `json:"_rev"`
Title string `json:"title"`
GemText string `json:"gemtxt"`
Slug string `json:"slug"`
@ -185,9 +183,6 @@ func SaveGemlogEntry(config *Config, entry *GemlogEntry) error {
return fmt.Errorf("unexpected status code %d: %s", res.StatusCode, string(body))
}
// fmt.Println(res)
// fmt.Println(string(body))
return nil
}