Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
update dep and rdme
Browse files Browse the repository at this point in the history
  • Loading branch information
kamalshkeir committed Feb 25, 2023
1 parent a44b155 commit 86ebbd2
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 478 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,20 @@
---


# KaGo Web Framework
<br>
# KaGo Web Framework (not maintained anymore)
## If you like Kago you will live Korm, this package will not be supported soon
## Korm or Kmux or Ksbus are more composable, faster, and more powerful :
- Kmux is faster using combination of safemap and radix tree , also it does not have param routing conflicts, you can have `/test/user` and `/test/:table`, if exact route match for the first , the request handled only by the first , otherwise if something like `/test/something` -> `/test/:table`
- Kmux also can generate swagger docs from you code or from comments</a><a href="https://www.youtube.com/watch?v=r7rbMrTkVek">
<img src="https://user-images.githubusercontent.com/54605903/217871012-9c5dc1da-25bd-47d5-ac9e-c3acee7178d5.svg" width="auto" height="50px">
</a>

- Ksbus and Korm are perfect combination, allowing you to sync your servers and clients python and javascript all togethers</a><a href="https://www.youtube.com/watch?v=KMnnwly3Mpc">
<img src="https://user-images.githubusercontent.com/54605903/217871012-9c5dc1da-25bd-47d5-ac9e-c3acee7178d5.svg" width="auto" height="50px">
</a>



KaGo is a Django like web framework, that encourages clean and rapid development.

You can start a new project using 2 lines of code, run a high performance server with CRUD Admin Dashboard, interactive shell, easy and performant ORM, AutoSSL and lots more...
Expand Down
31 changes: 17 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,30 @@ module github.com/kamalshkeir/kago
go 1.19

require (
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9
golang.org/x/crypto v0.6.0
golang.org/x/sys v0.5.0 // indirect
golang.org/x/time v0.3.0
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.40.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

require (
github.com/kamalshkeir/kstrct v1.3.7
github.com/prometheus/client_golang v1.12.2
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035
golang.org/x/text v0.3.7
github.com/kamalshkeir/kstrct v1.5.5
github.com/prometheus/client_golang v1.14.0
golang.org/x/net v0.7.0
golang.org/x/term v0.5.0
golang.org/x/text v0.7.0
)
Loading

0 comments on commit 86ebbd2

Please sign in to comment.