fix: formatting + add clawpub reference #4

Merged
sneak merged 2 commits from :fix/formatting-and-readme into main 2026-02-28 11:45:56 +01:00
Showing only changes of commit dcb6ca4339 - Show all commits

View File

@@ -240,8 +240,8 @@ last_modified: 2026-02-22
1. When defining custom string-based types (e.g. `type ImageID string`), 1. When defining custom string-based types (e.g. `type ImageID string`),
implement `fmt.Stringer`. Use `.String()` at SDK and library boundaries implement `fmt.Stringer`. Use `.String()` at SDK and library boundaries
instead of `string(v)`. This makes type conversions explicit, grep-able, instead of `string(v)`. This makes type conversions explicit, grep-able, and
and consistent across the codebase. Example: consistent across the codebase. Example:
```go ```go
type ContainerID string type ContainerID string