()
| 782 | } |
| 783 | |
| 784 | func (sb ServerBlock) GetKeysText() []string { |
| 785 | res := make([]string, 0, len(sb.Keys)) |
| 786 | for _, k := range sb.Keys { |
| 787 | res = append(res, k.Text) |
| 788 | } |
| 789 | return res |
| 790 | } |
| 791 | |
| 792 | // DispenseDirective returns a dispenser that contains |
| 793 | // all the tokens in the server block. |
no outgoing calls