11 lines
115 B
Go
11 lines
115 B
Go
package relay
|
|
|
|
import (
|
|
"orly.dev/pkg/app/config"
|
|
)
|
|
|
|
func (s *Server) Config() (c *config.C) {
|
|
c = s.C
|
|
return
|
|
}
|