mirror of
https://github.com/facebook/duckling.git
synced 2024-11-24 15:43:20 +03:00
40cdb88982
Summary: Pull Request resolved: https://github.com/facebook/duckling/pull/563 Reviewed By: girifb Differential Revision: D25624047 Pulled By: chessai fbshipit-source-id: b50cf34f4a28bfcbd4a0ca3479debc5a5c118b5e
23 lines
473 B
Haskell
23 lines
473 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.Common
|
|
( allDimensions
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
allDimensions :: [Seal Dimension]
|
|
allDimensions =
|
|
[ Seal AmountOfMoney
|
|
, Seal CreditCardNumber
|
|
, Seal Email
|
|
, Seal Numeral
|
|
, Seal PhoneNumber
|
|
, Seal Url
|
|
]
|