(ctx context.Context, cache dagql.PersistedObjectCache)
| 50 | } |
| 51 | |
| 52 | func (ef *EnvFile) EncodePersistedObject(ctx context.Context, cache dagql.PersistedObjectCache) (dagql.PersistedObjectEncoding, error) { |
| 53 | _ = ctx |
| 54 | _ = cache |
| 55 | if ef == nil { |
| 56 | return dagql.PersistedObjectEncoding{}, fmt.Errorf("encode persisted env file: nil env file") |
| 57 | } |
| 58 | return encodePersistedObjectPayload(ef) |
| 59 | } |
| 60 | |
| 61 | func (*EnvFile) DecodePersistedObject(ctx context.Context, dag *dagql.Server, _ uint64, _ *dagql.ResultCall, payload json.RawMessage) (dagql.Typed, error) { |
| 62 | _ = ctx |
nothing calls this directly
no test coverage detected