linstrom/ap/common_types.go
2024-05-31 11:54:39 +02:00

17 lines
188 B
Go

package ap
import "net/url"
type IdType struct {
Id *url.URL
}
type ValueType[T any] struct {
Value T
}
type Media struct {
Type url.URL
MediaType string
Url url.URL
}