mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
991831b1dd
Adds APIKeyID to interceptions. Needed for tracking API key usage with bridge. fixes https://github.com/coder/coder/issues/20001
10 lines
139 B
Go
10 lines
139 B
Go
package aibridged
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Request struct {
|
|
SessionKey string
|
|
APIKeyID string
|
|
InitiatorID uuid.UUID
|
|
}
|