fix(gitignore): rm pilot-env and cache

This commit is contained in:
Goon
2023-09-11 10:08:42 +07:00
parent 2c567793c5
commit 367caa1797
117 changed files with 0 additions and 5414 deletions

View File

@@ -1,14 +0,0 @@
import json
from peewee import TextField
class JSONField(TextField):
def python_value(self, value):
if value is not None:
return json.loads(value)
return value
def db_value(self, value):
if value is not None:
return json.dumps(value)
return value