Add development + debugging docker configs

This commit is contained in:
sid palas
2023-02-01 16:15:05 -05:00
parent 15a831b04b
commit bb256c8926
21 changed files with 3752 additions and 26 deletions

View File

@ -0,0 +1,10 @@
package test
import "testing"
func TestOneEqualsOne(t *testing.T) {
val := 1
if val != 1 {
t.Errorf("1 != %d; want 1", val)
}
}