mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-08 11:32:05 +00:00
11 lines
112 B
Go
11 lines
112 B
Go
package net
|
|
|
|
import "io"
|
|
|
|
type ReadOnlyReader struct {
|
|
io.Reader
|
|
}
|
|
|
|
type WriteOnlyWriter struct {
|
|
io.Writer
|
|
}
|