Skip to content

Commit

Permalink
added adio methods
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-mescudi committed Jan 5, 2025
1 parent 8ab9aa2 commit afa3779
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ type SecureExtractHandler struct {
concurrency int
}

type AudioEmbedHandler struct {}
type AudioExtractHandler struct {}

func NewAudioEmbedder() *AudioEmbedHandler {
return &AudioEmbedHandler{}
}

func NewAudioExtractHandler() *AudioExtractHandler {
return &AudioExtractHandler{}
}


// NewEmbedHandlerWithConcurrency initializes an EmbedHandler with a specified concurrency
func NewEmbedHandlerWithConcurrency(concurrency int) (*EmbedHandler, error) {
if concurrency <= 0 {
Expand Down

0 comments on commit afa3779

Please sign in to comment.