firasdarwish/ore

View on GitHub
concrete.go

Summary

Maintainability
A
0 mins
Test Coverage
package ore

import "time"

// concrete holds the resolved instance value and other metadata
type concrete struct {
    // the value implementation
    value any
    // the creation time
    createdAt time.Time
    // the lifetime of this concrete
    lifetime Lifetime
}