mirror of
https://github.com/facebook/duckling.git
synced 2024-11-24 15:43:20 +03:00
28cb5ebd2a
Summary: This pull request is to add support for Telugu language (Numerical Dimension) to Duckling Pull Request resolved: https://github.com/facebook/duckling/pull/470 Differential Revision: D25546700 Pulled By: chessai fbshipit-source-id: 1d88ee27da8a577a4a79ff31be8cb55ed6444c4e
18 lines
371 B
Haskell
18 lines
371 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.TE
|
|
( allDimensions
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
allDimensions :: [Seal Dimension]
|
|
allDimensions =
|
|
[ Seal Numeral
|
|
]
|