mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-31 07:06:35 +00:00
17 lines
354 B
Go
17 lines
354 B
Go
package tunnel
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/cloudflare/cloudflared/tunnelstore"
|
|
)
|
|
|
|
type Info struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
Connectors []*tunnelstore.ActiveClient `json:"conns"`
|
|
}
|