mirror of
https://github.com/1f349/violet.git
synced 2024-11-09 22:22:50 +00:00
10 lines
96 B
Go
10 lines
96 B
Go
|
package target
|
||
|
|
||
|
type Route struct {
|
||
|
Pre bool
|
||
|
Host string
|
||
|
Port int
|
||
|
Path string
|
||
|
Abs bool
|
||
|
}
|