Working auth and photo json endpoint

Signed-off-by: Kris Nóva <kris@nivenly.com>
This commit is contained in:
Kris Nóva 2021-02-09 11:17:06 -08:00
parent ef275f97f4
commit e4323b6047
2032 changed files with 821464 additions and 52 deletions

View file

@ -48,21 +48,3 @@ func TestMain(m *testing.M) {
// --- [ Tests ] ---
}
func TestHappyAPI(t *testing.T) {
// Code to validate the API
if true {
t.Logf("Success!\n")
} else {
t.Errorf("Failure!\n")
}
}
func TestSadAPI(t *testing.T) {
// Code to validate the API
if !false {
t.Logf("Success!\n")
} else {
t.Errorf("Failure!\n")
}
}