binhonglee/GlobeTrotte

View on GitHub
src/turbine/parsing/parsedurlerror.go

Summary

Maintainability
A
0 mins
Test Coverage
// DO NOT EDIT THIS FILE DIRECTLY!
// Edits will be overwritten on build.
//
// If you would like to make any changes, please edit the source file (src/wings/enum/parsed_url_error.wings)
// and run the following command:
// plz build //src/wings/...

package parsing

type ParsedURLError int

const (
    URLInvalid          = iota
    URLNotFound         = iota
    URLProcessingFailed = iota
    None                = iota
)