-
Notifications
You must be signed in to change notification settings - Fork 563
Closed
Milestone
Description
Go does not provide a way to add reflection information to a struct type. XGo uses Go's built-in struct field tags to implement struct type tags. For example:
type Start struct {
_ "Start recording meeting minutes"
}It will be converted to:
type Start struct {
_ struct{} `_:"Start recording meeting minutes"`
}Reactions are currently unavailable