-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from vidyasagar1432/dev
Dev - added StarletteCache
- Loading branch information
Showing
17 changed files
with
352 additions
and
433 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
|
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,6 +5,8 @@ | |
.pypirc | ||
|
||
# python | ||
starletteTest.py | ||
fastTest.py | ||
test.py | ||
test1.py | ||
fastapiExample.py | ||
|
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
from detacache.core._decorators import DetaCache, FastAPICache,JsonCache | ||
from detacache.core._decorators import DetaCache,BaseDecorator,FastAPICache,StarletteCache | ||
|
||
|
||
__version__ = 'v0.1.1' | ||
__version__ = 'v0.1.2' | ||
|
||
__all__ = [ | ||
'BaseDecorator', | ||
'DetaCache', | ||
'FastAPICache', | ||
'JsonCache' | ||
] | ||
'StarletteCache' | ||
] | ||
|
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,9 +1,8 @@ | ||
from .core._coder import Coder,DetaCoder,JsonCoder,PickleCoder,FastAPICoder | ||
from .core._coder import Coder,DetaCoder,FastAPICoder,StarletteCoder | ||
|
||
__all__ = [ | ||
'Coder', | ||
'DetaCoder', | ||
'JsonCoder', | ||
'PickleCoder', | ||
'FastAPICoder' | ||
'FastAPICoder', | ||
'StarletteCoder' | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.