LoadStrings load one or multi string
(format string, str string, more ...string)
| 321 | |
| 322 | // LoadStrings load one or multi string |
| 323 | func LoadStrings(format string, str string, more ...string) error { |
| 324 | return dc.LoadStrings(format, str, more...) |
| 325 | } |
| 326 | |
| 327 | // LoadStrings load data from source string content. |
| 328 | func (c *Config) LoadStrings(format string, str string, more ...string) (err error) { |
searching dependent graphs…