GoApiTutorial
GoApiTutorial copied to clipboard
Add syntax coloring for code blocks in the README
Coverage remained the same at 67.081% when pulling 088c6c0e86a3ce169a02e016c3e65da6c8d3ec3e on mh-cbon:patch-1 into 2b3959605b2a87d732ecb00da7779b86362c614f on kelvins:master.
Hello @mh-cbon, thanks a lot for your contribution to the project.
Can you please just fix the indentation?
For example:
CREATE DATABASE rest_api_example;
USE rest_api_example;
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
age INT NOT NULL
);
to
CREATE DATABASE rest_api_example;
USE rest_api_example;
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
age INT NOT NULL
);