mirror of https://github.com/openclaw/openclaw.git
fix: export sessions preview payload init
This commit is contained in:
parent
cd6bacae23
commit
1d55dc0fe3
|
|
@ -249,6 +249,11 @@ public struct ClawdbotSessionPreviewEntry: Codable, Sendable {
|
|||
public struct ClawdbotSessionsPreviewPayload: Codable, Sendable {
|
||||
public let ts: Int
|
||||
public let previews: [ClawdbotSessionPreviewEntry]
|
||||
|
||||
public init(ts: Int, previews: [ClawdbotSessionPreviewEntry]) {
|
||||
self.ts = ts
|
||||
self.previews = previews
|
||||
}
|
||||
}
|
||||
|
||||
public struct ClawdbotChatSendResponse: Codable, Sendable {
|
||||
|
|
|
|||
Loading…
Reference in New Issue