Skip to content

Commit

Permalink
update uncomment usage
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitpaulk committed Aug 27, 2024
1 parent 7f7832e commit 74a41cc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions starter_templates/go/code/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ package main

import (
"fmt"
// Uncomment this block to pass the first stage!
// "os"
// "os/exec"
"os"
"os/exec"
)

// Ensures gofmt doesn't remove the imports above (feel free to remove this!)
var _ = os.Args
var _ = exec.Command

// Usage: your_docker.sh run <image> <command> <arg1> <arg2> ...
func main() {
// You can use print statements as follows for debugging, they'll be visible when running tests.
Expand Down

0 comments on commit 74a41cc

Please sign in to comment.