aboutsummaryrefslogtreecommitdiff
path: root/registration.go
blob: da492f8f04bab30ccd22ee3e6b91e0d1d04addc4 (plain)
1
2
3
4
5
6
7
8
package acme

func NewRegistration(contact []Contact, r ResourceValue) Registration {
	return Registration{
		Resource: r.Value(),
		Contact:  contact,
	}
}