update question

This commit is contained in:
2025-07-10 05:48:23 +08:00
parent f8702ac1b9
commit 9c49adbaf1
7 changed files with 55 additions and 11 deletions

7
go-stdlib/README.md Normal file
View File

@ -0,0 +1,7 @@
# Instructions
Start the API server using the following command:
```sh
go run .
```

View File

@ -18,6 +18,8 @@ var accounts = map[int]int{
2: 1000,
}
var transactions = []Transfer{}
func main() {
fmt.Println("Starting server on port 8080")
http.HandleFunc("/transfer", transfer)