2025-12-30から1日間の記事一覧

alecthomas/kongでユーザー定義型(Custom decoder)を使う

github.com For more fine-grained control, if a field implements the MapperValue interface it will be used to decode arguments into the field. package main import ( "fmt" "os" "github.com/alecthomas/kong" ) type Foo struct { Value string } …