backend for xcvr appview

clean up how this looks but i'm sure this isn't it

+1 -7
+1 -7
server/internal/db/db.go
··· 45 45 } 46 46 47 47 func (s *Store) ResolveHandle(handle string, ctx context.Context) (string, error) { 48 - row := s.pool.QueryRow(ctx, ` 49 - SELECT 50 - h.did 51 - FROM did_handles h 52 - WHERE h.handle = $1 53 - LIMIT 1 54 - `, handle) 48 + row := s.pool.QueryRow(ctx, `SELECT h.did FROM did_handles h WHERE h.handle = $1`, handle) 55 49 var did string 56 50 err := row.Scan(&did) 57 51 if err != nil {