blob: 26229d6a2d2ce2f718d64c77376c1cc58ce56d47 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package direction
type Direction string
const (
Right Direction = "R"
Across Direction = "A"
Left Direction = "L"
)