mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-04 21:53:37 +03: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
|
|
}
|