Skip to content

Commit

Permalink
sdks: thunderpay-sdk-go
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Jan 23, 2025
1 parent 724dba3 commit eef4e05
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sdks/thunderpay-sdk-go/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module github.com/ThunderPayment/thunderpay

go 1.21.4

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
7 changes: 7 additions & 0 deletions sdks/thunderpay-sdk-go/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
18 changes: 18 additions & 0 deletions sdks/thunderpay-sdk-go/utils/helpers.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* @file helpers.go
* @author Krisna Pranav
* @brief Helpers
* @version 1.0
* @date 2024-01-23
*
* @copyright Copyright (c) 2024 ThunderPayment Developers, Krisna Pranav
*
*/

package utils

type FormFile struct {
FileBytes []byte
FileName string
FormFileName string
}

0 comments on commit eef4e05

Please sign in to comment.