summaryrefslogtreecommitdiff
path: root/lib/Ultramarine/Model/License.pm6
blob: 26380e0736fa5ff17ac59b2f414c7c1bfa88ac33 (plain)
1
2
3
4
5
6
7
use v6.d.PREVIEW;
 
class Ultramarine::Model::License {
    method is-valid() { True }
    method email() { 'foo@bar.com' }
    method expires-at { now.DateTime.later(:2years).Instant }
}