fogfish/blueprint-serverless-golang

View on GitHub
internal/core/pet.go

Summary

Maintainability
A
0 mins
Test Coverage
package core

type Identity = string

type Category = string

type Price = float64

// Pet is an example domain type
type Pet struct {
    ID       Identity
    Category Category
    Price    Price
}