mirror of
https://github.com/facebook/duckling.git
synced 2024-12-01 08:19:36 +03:00
e76cee3a6d
Summary: Because it makes more sense. Reviewed By: JonCoens Differential Revision: D4721646 fbshipit-source-id: 449bfb4
40 lines
1.3 KiB
Haskell
40 lines
1.3 KiB
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. An additional grant
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
{-# LANGUAGE GADTs #-}
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
module Duckling.Rules.SV
|
|
( rules
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
import qualified Duckling.AmountOfMoney.SV.Rules as AmountOfMoney
|
|
import qualified Duckling.Duration.SV.Rules as Duration
|
|
import qualified Duckling.Ordinal.SV.Rules as Ordinal
|
|
import qualified Duckling.Numeral.SV.Rules as Numeral
|
|
import qualified Duckling.Time.SV.Rules as Time
|
|
import qualified Duckling.TimeGrain.SV.Rules as TimeGrain
|
|
import Duckling.Types
|
|
|
|
rules :: Some Dimension -> [Rule]
|
|
rules (This Distance) = []
|
|
rules (This Duration) = Duration.rules
|
|
rules (This Numeral) = Numeral.rules
|
|
rules (This Email) = []
|
|
rules (This AmountOfMoney) = AmountOfMoney.rules
|
|
rules (This Ordinal) = Ordinal.rules
|
|
rules (This PhoneNumber) = []
|
|
rules (This Quantity) = []
|
|
rules (This RegexMatch) = []
|
|
rules (This Temperature) = []
|
|
rules (This Time) = Time.rules
|
|
rules (This TimeGrain) = TimeGrain.rules
|
|
rules (This Url) = []
|
|
rules (This Volume) = []
|