mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
173d8c235f
Summary: Initialise Duration for CA (Catalan) language Reviewed By: stroxler Differential Revision: D28299352 Pulled By: chessai fbshipit-source-id: d1d4dd186b9fbf018c83a0df4d752b29da20f04d
24 lines
484 B
Haskell
24 lines
484 B
Haskell
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- This source code is licensed under the BSD-style license found in the
|
|
-- LICENSE file in the root directory of this source tree.
|
|
|
|
|
|
module Duckling.Dimensions.CA
|
|
( allDimensions
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
allDimensions :: [Seal Dimension]
|
|
allDimensions =
|
|
[ Seal AmountOfMoney
|
|
, Seal Distance
|
|
, Seal Duration
|
|
, Seal Numeral
|
|
, Seal Ordinal
|
|
, Seal Temperature
|
|
, Seal Volume
|
|
]
|