-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: export validatte mod via validation.ts to prevent conflicts
- Loading branch information
1 parent
b11afe6
commit f546352
Showing
19 changed files
with
247 additions
and
157 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 |
---|---|---|
@@ -1,22 +1,35 @@ | ||
## Description | ||
|
||
<!-- Include a summary of the change made and also list the dependencies that are required if any --> | ||
|
||
--- | ||
|
||
## Issue Ticket Number | ||
|
||
Fixes #(issue_number) | ||
|
||
--- | ||
|
||
## Type of change | ||
|
||
<!-- Please select all options that are applicable. --> | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to | ||
not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
--- | ||
|
||
# Checklist: | ||
- [ ] I have run `deno lint` AND `deno fmt` AND `deno task test` and got no errors. | ||
- [ ] I have followed the contributing guidelines of this project as mentioned in [CONTRIBUTING.md](/CONTRIBUTING.md) | ||
- [ ] I have checked to ensure there aren't other open [Pull Requests](https://github.com/Savory/Danet/pulls) for the same update/change? | ||
|
||
- [ ] I have run `deno lint` AND `deno fmt` AND `deno task test` and got no | ||
errors. | ||
- [ ] I have followed the contributing guidelines of this project as mentioned | ||
in [CONTRIBUTING.md](/CONTRIBUTING.md) | ||
- [ ] I have checked to ensure there aren't other open | ||
[Pull Requests](https://github.com/Savory/Danet/pulls) for the same | ||
update/change? | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have made corresponding changes needed to the documentation |
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ export { | |
Response, | ||
Router, | ||
} from 'https://deno.land/x/[email protected]/mod.ts'; | ||
export type { State, Route } from 'https://deno.land/x/[email protected]/mod.ts'; | ||
export type { Route, State } from 'https://deno.land/x/[email protected]/mod.ts'; | ||
export { getQuery } from 'https://deno.land/x/[email protected]/helpers.ts'; | ||
export { | ||
green, | ||
|
Oops, something went wrong.