github.com/xxf098/lite-proxy@v0.15.1-0.20230422081941-12c69f323218/common/net/io.go (about)

     1  package net
     2  
     3  import "io"
     4  
     5  type ReadOnlyReader struct {
     6  	io.Reader
     7  }
     8  
     9  type WriteOnlyWriter struct {
    10  	io.Writer
    11  }