Skip to content

Commit

Permalink
feat: Add api for k8s bound endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
jonstacks committed Oct 31, 2024
1 parent dcdb6f5 commit 292c6f1
Show file tree
Hide file tree
Showing 3 changed files with 142 additions and 6 deletions.
24 changes: 24 additions & 0 deletions datatypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions iter.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package ngrok

import "context"

type Iter[T any] interface {
Next(ctx context.Context) bool
Item() T
Err() error
}
115 changes: 109 additions & 6 deletions kubernetes_operators/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 292c6f1

Please sign in to comment.