mirror of
https://github.com/LukeHagar/slinky.git
synced 2025-12-06 04:21:20 +00:00
11 lines
390 B
Go
11 lines
390 B
Go
package testfiles
|
|
|
|
// Sample Go file with URLs
|
|
var url1 = "https://example.com"
|
|
var url2 = "https://en.wikipedia.org/wiki/Main_Page"
|
|
var urlBad = "http://example..com"
|
|
var urlMissing = "https://"
|
|
var urlNonexistent = "https://this-domain-does-not-exist-123456789.com"
|
|
var urlPlaceholder1 = "https://[tenant].api.identitynow.com"
|
|
var urlPlaceholder2 = "https://{tenant}.api.identitynow.com"
|