97512e9a48
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
194 B
Go
13 lines
194 B
Go
package core
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// TestServer encapsula un servidor HTTP de test con su cliente y cleanup.
|
|
type TestServer struct {
|
|
URL string
|
|
Client *http.Client
|
|
Cleanup func()
|
|
}
|