simplebank icon indicating copy to clipboard operation
simplebank copied to clipboard

Backend master class: build a simple bank service in Go

Results 24 simplebank issues
Sort by recently updated
recently updated
newest added

How can i execute raw sql query ? Can we create table using sqlc ? I want to create a table dynamically through api . Is there any way i...

Thanks for the great tutorial! You currently use `http.NewRequest` in your tests: ```go request, err := http.NewRequest(...) require.NoError(t, err) ``` This could be replaced with [`httptest.NewRequest`](https://golang.org/pkg/net/http/httptest/#NewRequest) which panics on error...

ListAccounts interface I'm not sure if I have the next page how do I improve this one

```go if len(roleApis) > 0 { db := db.Orm.Debug().Model(&models.Api{}). Select("system_api.id"). Joins("left join system_menu_api on system_menu_api.api = system_api.id") for _, p := range roleApis { db = db.Or("system_api.url = ? and...

hi:How should the logic for logging out be implemented

https://github.com/envoyproxy/protoc-gen-validate

First of all thanks for the excellent lecture! I have already learned the [Lecture #24](https://www.youtube.com/watch?v=VcFnqQarpjI&list=PLy_6D98if3ULEtXtNSY_2qN21VCKgoQAE&index=24), and the commit is e2443c3eefeae7735f7b9773c63e9ec8b382883a I like to run tests in parallel, because it can...

Thanks for this great class. About lecture #25 (create docker-compose file), It is no longer used wait_for.sh for make order between services. and it isn't in docker document. It can...