mirror of
https://github.com/facebook/duckling.git
synced 2024-12-11 06:46:26 +03:00
5d8d99bbf4
Summary: Initialise Time for CA (Catalan) language Reviewed By: stroxler Differential Revision: D28455273 Pulled By: chessai fbshipit-source-id: be9a4d61692ba4fb32986e161e9fdd6d25a357dc
25 lines
498 B
Haskell
25 lines
498 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 Time
|
|
, Seal Volume
|
|
]
|