Files
steipete--codexbar/Sources/CodexBar/Providers/VertexAI/VertexAIProviderImplementation.swift
T
2026-07-13 12:22:33 +08:00

14 lines
350 B
Swift

import CodexBarCore
import Foundation
struct VertexAIProviderImplementation: ProviderImplementation {
let id: UsageProvider = .vertexai
let supportsLoginFlow: Bool = true
@MainActor
func runLoginFlow(context: ProviderLoginContext) async -> Bool {
await context.controller.runVertexAILoginFlow()
return false
}
}