go mod init

This commit is contained in:
2023-04-16 19:15:31 -07:00
parent 7640101f6f
commit ab866c8c02
3 changed files with 207 additions and 157 deletions

15
go.mod Normal file
View File

@@ -0,0 +1,15 @@
module github.com/taigrr/elevenlabs
go 1.20
require (
github.com/antihax/optional v1.0.0
golang.org/x/oauth2 v0.7.0
)
require (
github.com/golang/protobuf v1.5.2 // indirect
golang.org/x/net v0.9.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)