mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
10 lines
139 B
Go
10 lines
139 B
Go
package main
|
|
|
|
type Responder int
|
|
|
|
func (r *Responder) Get(args string, replay *string) error {
|
|
*replay = CallRater(args)
|
|
return nil
|
|
}
|
|
|