()
| 57 | } |
| 58 | |
| 59 | func (l *License) Trial() bool { |
| 60 | if trail, ok := l.Claims["trail"].(bool); ok { |
| 61 | return trail |
| 62 | } |
| 63 | return false |
| 64 | } |
| 65 | |
| 66 | func (l *License) AllFeaturesClaim() bool { |
| 67 | if all, ok := l.Claims["all_features"].(bool); ok { |
no outgoing calls
no test coverage detected