Studying app made with golang
Flash-Cards is a project made by Yassa Taiseer that is used to help make quick questions and answers
Flash-Cards requires the MySql download here
It also requires the installation of Golang 1.15+
go run main.go
DlvrMe runs on a MySQL databases
There is a need for two tables Users and Cards
Name the database flashcarddb
on 3306
Port
The user’s table will look like this:
|VALUE| TYPE |
| ——— | ——— |
| Username | VARCHAR |
| Password | VARCHAR |
| ID_key | AUTO_INCREMENT_KEY |
VALUE | TYPE |
---|---|
Username | VARCHAR |
Question | VARCHAR |
Answer | VARCHAR |
ID_key | AUTO_INCREMENT_KEY |