Skip to content

Commit

Permalink
Merge pull request #7 from blockademy/master
Browse files Browse the repository at this point in the history
print output to stdout
  • Loading branch information
blmayer authored Jun 10, 2024
2 parents 2e2c1f7 + 631c23b commit 8ec2ae7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion awslambdarpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ package main
import (
"os"
"time"
"fmt"

"github.com/blmayer/awslambdarpc/client"
)
Expand Down Expand Up @@ -120,5 +121,6 @@ func main() {
os.Stderr.WriteString(err.Error() + "\n")
os.Exit(-2)
}
println(string(res))

fmt.Println(string(res))
}

0 comments on commit 8ec2ae7

Please sign in to comment.