9 lines
407 B
Bash
Executable File
9 lines
407 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "⚠️ scripts/grpc.sh is deprecated to avoid code duplication."
|
|
echo "To generate gRPC protobuf files, handlers, and mappers dynamically based on the database schema, please use scripts/context.sh instead."
|
|
echo ""
|
|
echo "Usage example:"
|
|
echo " ./scripts/context.sh -s path/to/sql -d your/module/dir -g grpc"
|
|
echo " ./scripts/context.sh -s path/to/sql -d your/module/dir -g all"
|
|
exit 1 |