-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ee95e5
commit d6b8a0d
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## Introduction | ||
This is a kcl module representing the schema of sqlc config `sqlc.yaml` | ||
|
||
sqlc compiles SQL to type-safe code. | ||
|
||
You can find more information about sqlc here: | ||
- https://sqlc.dev/ | ||
- https://github.com/sqlc-dev/sqlc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
version: 0.0.4 | ||
name: sqlc | ||
displayName: sqlc | ||
createdAt: "2024-09-05T16:16:47Z" | ||
description: sqlc.dev schema config file | ||
links: | ||
- name: KCL homepage | ||
url: https://kcl-lang.io/ | ||
- name: KCL repo | ||
url: https://github.com/kcl-lang/kcl | ||
install: | | ||
#### Add `sqlc` with tag `0.0.4` as dependency | ||
``` | ||
kcl mod add sqlc:0.0.4 | ||
``` | ||
#### Pull `sqlc` with tag `0.0.4` to local | ||
``` | ||
kcl mod pull sqlc:0.0.4 | ||
``` | ||
maintainers: | ||
- name: kcl-lang.io | ||
email: [email protected] | ||
provider: | ||
name: kcl-lang.io |