Run server with
cargo run --bin sequel-serverRun client with
cargo run --bin sequel-clientThey connect on port 3000. The client provides a command prompt where you can
enter commands SELECT [column names or *] FROM [table name], INSERT INTO [table name] (column name,*) VALUES (val,*), and CREATE TABLE [table name] ([column name] [string/number] [optional constraints],*).