8 lines
189 B
Go
8 lines
189 B
Go
package contracts
|
|
|
|
// SessionManifest is a placeholder durable session-run contract.
|
|
type SessionManifest struct {
|
|
Schema string `json:"schema"`
|
|
SessionID string `json:"session_id"`
|
|
}
|