Skip to content

Commit

Permalink
Support for sync/async in Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed Nov 15, 2024
1 parent 07fe5a7 commit e3435de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/XyoClient/Panel/Panel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ public enum XyoPanelError: Error {

public class XyoPanel {

public init(archivists: [XyoArchivistApiClient], witnesses: [WitnessModuleSync]) {
public init(archivists: [XyoArchivistApiClient], witnesses: [WitnessModule]) {
self._archivists = archivists
self._witnesses = witnesses
}

public convenience init(
archive: String? = nil, apiDomain: String? = nil, witnesses: [WitnessModuleSync]? = nil,
archive: String? = nil, apiDomain: String? = nil, witnesses: [WitnessModule]? = nil,
token: String? = nil
) {
let apiConfig = XyoArchivistApiConfig(
Expand Down

0 comments on commit e3435de

Please sign in to comment.