func (d *BytesDAWG) Get(key string) ([][]byte, bool) {
    index, ok := d.followKey([]byte(key))
    if !ok {
        return [][]byte{}, false
    }