Skip to content

Commit 726e800

Browse files
committed
add awesome links
1 parent ab443c7 commit 726e800

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+270
-10
lines changed

awesome.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
repo:
2+
- https://github.com/luban-agi/Awesome-AIGC-Tutorials.git
3+
- https://github.com/LiLittleCat/awesome-free-chatgpt.git
4+
- https://github.com/avelino/awesome-go.git
5+
- https://github.com/refinedev/awesome-refine.git
6+
- https://github.com/EwingYangs/awesome-open-gpt.git
7+
- https://github.com/vinta/awesome-python.git
8+
- https://github.com/filipecalegario/awesome-generative-ai.git
9+
- https://github.com/houbb/awesome-metaverse-zh.git
10+
- https://github.com/mnismt/awesome-notion-site.git

cmd/code/starter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package code
22

33
import (
4-
"github.com/qdriven/qfluent-go/pkg/utils/shell"
4+
"github.com/qdriven/qfluent-go/internal/utils/shell"
55
"github.com/spf13/cobra"
66
_ "log/slog"
77
"os"

cmd/code/starter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package code
22

33
import (
44
"fmt"
5-
"github.com/qdriven/qfluent-go/pkg/utils/shell"
5+
"github.com/qdriven/qfluent-go/internal/utils/shell"
66
"os"
77
"path"
88
"testing"

go.mod

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ require (
66
github.com/chyroc/lark v0.0.112
77
github.com/fsnotify/fsnotify v1.6.0
88
github.com/google/go-cmp v0.5.9
9+
github.com/imroc/req/v3 v3.42.2
910
github.com/itchyny/gojq v0.12.13
1011
github.com/rest-go/rest v0.1.4
1112
github.com/samber/do v1.6.0
@@ -24,14 +25,22 @@ require (
2425
github.com/KyleBanks/depth v1.2.1 // indirect
2526
github.com/PuerkitoBio/purell v1.1.1 // indirect
2627
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
28+
github.com/andybalholm/brotli v1.0.5 // indirect
29+
github.com/cloudflare/circl v1.3.3 // indirect
2730
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
31+
github.com/gaukas/godicttls v0.0.4 // indirect
2832
github.com/go-openapi/jsonpointer v0.19.5 // indirect
2933
github.com/go-openapi/jsonreference v0.19.6 // indirect
3034
github.com/go-openapi/spec v0.20.4 // indirect
3135
github.com/go-openapi/swag v0.19.15 // indirect
3236
github.com/go-sql-driver/mysql v1.7.0 // indirect
37+
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
3338
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
39+
github.com/golang/mock v1.6.0 // indirect
40+
github.com/google/pprof v0.0.0-20230901174712-0191c66da455 // indirect
3441
github.com/google/uuid v1.3.0 // indirect
42+
github.com/hashicorp/errwrap v1.1.0 // indirect
43+
github.com/hashicorp/go-multierror v1.1.1 // indirect
3544
github.com/hashicorp/hcl v1.0.0 // indirect
3645
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3746
github.com/itchyny/timefmt-go v0.1.5 // indirect
@@ -44,12 +53,18 @@ require (
4453
github.com/jackc/pgx/v5 v5.2.0 // indirect
4554
github.com/josharian/intern v1.0.0 // indirect
4655
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
56+
github.com/klauspost/compress v1.17.0 // indirect
4757
github.com/magiconair/properties v1.8.7 // indirect
48-
github.com/mailru/easyjson v0.7.6 // indirect
58+
github.com/mailru/easyjson v0.7.7 // indirect
4959
github.com/mattn/go-isatty v0.0.19 // indirect
5060
github.com/mitchellh/mapstructure v1.5.0 // indirect
61+
github.com/onsi/ginkgo/v2 v2.12.0 // indirect
5162
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
5263
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
64+
github.com/quic-go/qpack v0.4.0 // indirect
65+
github.com/quic-go/qtls-go1-20 v0.3.3 // indirect
66+
github.com/quic-go/quic-go v0.38.1 // indirect
67+
github.com/refraction-networking/utls v1.5.3 // indirect
5368
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
5469
github.com/sagikazarmark/locafero v0.3.0 // indirect
5570
github.com/sagikazarmark/slog-shim v0.1.0 // indirect

go.sum

Lines changed: 48 additions & 3 deletions
Large diffs are not rendered by default.
File renamed without changes.

pkg/core/config/config.go renamed to internal/core/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"encoding/json"
66
"fmt"
77
"github.com/fsnotify/fsnotify"
8-
"github.com/qdriven/qfluent-go/pkg/utils"
8+
"github.com/qdriven/qfluent-go/internal/utils"
99
"github.com/spf13/viper"
1010
"log/slog"
1111
"reflect"
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)