├── .gitattributes ├── README.md ├── app └── main.py ├── codecrafters.yml └── spawn_redis_server.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/redis-starter-python/HEAD/README.md -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/redis-starter-python/HEAD/app/main.py -------------------------------------------------------------------------------- /codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/redis-starter-python/HEAD/codecrafters.yml -------------------------------------------------------------------------------- /spawn_redis_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/redis-starter-python/HEAD/spawn_redis_server.sh --------------------------------------------------------------------------------