mirror of
https://github.com/ngrok/ngrok-api-go.git
synced 2026-05-17 16:50:37 +00:00
14 lines
169 B
Go
14 lines
169 B
Go
// Code generated for API Clients. DO NOT EDIT.
|
|
|
|
package ngrok
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Iter[T any] interface {
|
|
Next(context.Context) bool
|
|
Item() T
|
|
Err() error
|
|
}
|