Skip to content

Commit beb9e8b

Browse files
committed
chore: modify an output to show SQL query on a new line
Part of #17
1 parent a1b7756 commit beb9e8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const createEndpoints = async (destDir, lang, config) => {
135135
const sql = removePlaceholders(flattenQuery(method.query));
136136
const verb = method.verb.toUpperCase();
137137

138-
console.log(`${verb} ${path} => ${sql}`);
138+
console.log(`${verb} ${path}\n\t${sql}`);
139139
});
140140
}
141141

0 commit comments

Comments
 (0)