Files
go-grip/pkg/client.go
Christoph Herb 9bb188e278 feat: Improve README.md rendering and add new flags for customization
Added support for rendering the `README.md` file with a markdown parser, allowing users to customize the behavior with new flags. The `-r=false` flag can be used to disable rendering of the README.md file if no file is provided.

Updated the `cmd/root.go` file to include the new flags and updated the `pkg/client.go` file to reflect the changes in the client struct.
2024-10-10 00:13:28 +02:00

9 lines
107 B
Go

package pkg
type Client struct {
Dark bool
OpenBrowser bool
Port int
OpenReadme bool
}