69 lines
2.9 KiB
Modula-2
69 lines
2.9 KiB
Modula-2
module electricity_bill_calc
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/deckarep/golang-set/v2 v2.1.0
|
|
github.com/fufuok/utils v0.7.13
|
|
github.com/gin-gonic/gin v1.8.1
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/google/uuid v1.3.0
|
|
github.com/jackc/pgx/v5 v5.0.0-beta.1
|
|
github.com/jinzhu/copier v0.3.5
|
|
github.com/liamylian/jsontime/v2 v2.0.0
|
|
github.com/mozillazg/go-pinyin v0.19.0
|
|
github.com/samber/lo v1.27.0
|
|
github.com/shopspring/decimal v1.3.1
|
|
github.com/spf13/viper v1.12.0
|
|
github.com/vmihailenco/msgpack/v5 v5.3.5
|
|
github.com/xuri/excelize/v2 v2.6.1
|
|
xorm.io/builder v0.3.12
|
|
xorm.io/xorm v1.3.1
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.11.0 // indirect
|
|
github.com/goccy/go-json v0.9.10 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
|
|
github.com/richardlehane/mscfb v1.0.4 // indirect
|
|
github.com/richardlehane/msoleps v1.0.3 // indirect
|
|
github.com/spf13/afero v1.8.2 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.3.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.0 // indirect
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
github.com/xuri/efp v0.0.0-20220603152613-6918739fd470 // indirect
|
|
github.com/xuri/nfp v0.0.0-20220409054826-5e722a1d9e22 // indirect
|
|
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8 // indirect
|
|
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
|
|
golang.org/x/net v0.0.0-20220812174116-3211cb980234 // indirect
|
|
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/ini.v1 v1.66.4 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|