run goinputs

This commit is contained in:
2025-05-18 20:20:40 -04:00
parent 5709bfd21d
commit 369d445637
4 changed files with 8 additions and 4 deletions

View File

@@ -1,8 +1,9 @@
package decimal package decimal
import ( import (
"gopkg.in/inf.v0"
"reflect" "reflect"
"gopkg.in/inf.v0"
) )
func Marshal(value interface{}) ([]byte, error) { func Marshal(value interface{}) ([]byte, error) {

View File

@@ -2,12 +2,13 @@ package decimal
import ( import (
"fmt" "fmt"
"gopkg.in/inf.v0"
"math/big" "math/big"
"reflect" "reflect"
"strconv" "strconv"
"strings" "strings"
"gopkg.in/inf.v0"
"github.com/gocql/gocql/serialization/varint" "github.com/gocql/gocql/serialization/varint"
) )

View File

@@ -2,8 +2,9 @@ package decimal
import ( import (
"fmt" "fmt"
"gopkg.in/inf.v0"
"reflect" "reflect"
"gopkg.in/inf.v0"
) )
func Unmarshal(data []byte, value interface{}) error { func Unmarshal(data []byte, value interface{}) error {

View File

@@ -2,10 +2,11 @@ package decimal
import ( import (
"fmt" "fmt"
"gopkg.in/inf.v0"
"reflect" "reflect"
"strconv" "strconv"
"gopkg.in/inf.v0"
"github.com/gocql/gocql/serialization/varint" "github.com/gocql/gocql/serialization/varint"
) )