File tree Expand file tree Collapse file tree 6 files changed +11
-21
lines changed Expand file tree Collapse file tree 6 files changed +11
-21
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,8 @@ name: servant-multipart-api
2
2
version : 0.12
3
3
synopsis : multipart/form-data (e.g file upload) support for servant
4
4
description :
5
- This package adds support for file upload to the servant ecosystem. It draws
6
- on ideas and code from several people who participated in the
7
- (in)famous [ticket #133](https://github.com/haskell-servant/servant/issues/133) on
8
- servant's issue tracker.
5
+ This package contains servant API types that support multiform upload, used by
6
+ servant-multipart and servant-multipart-client for backend/client implementation.
9
7
10
8
homepage : https://github.com/haskell-servant/servant-multipart#readme
11
9
license : BSD3
Original file line number Diff line number Diff line change 14
14
{-# LANGUAGE StandaloneDeriving #-}
15
15
{-# LANGUAGE UndecidableInstances #-}
16
16
{-# LANGUAGE TypeApplications #-}
17
- -- | @multipart/form-data@ support for servant.
17
+ -- | @multipart/form-data@ Servant API support for servant.
18
+ -- see servant-multipart and servant-multipart-client for server- and client-
19
+ -- definitions.
18
20
--
19
21
-- This is mostly useful for adding file upload support to
20
22
-- an API. See haddocks of 'MultipartForm' for an introduction.
Original file line number Diff line number Diff line change @@ -2,10 +2,7 @@ name: servant-multipart-client
2
2
version : 0.12
3
3
synopsis : multipart/form-data (e.g file upload) support for servant
4
4
description :
5
- This package adds support for file upload to the servant ecosystem. It draws
6
- on ideas and code from several people who participated in the
7
- (in)famous [ticket #133](https://github.com/haskell-servant/servant/issues/133) on
8
- servant's issue tracker.
5
+ This package adds client-side support for file upload to the servant ecosystem.
9
6
10
7
homepage : https://github.com/haskell-servant/servant-multipart#readme
11
8
license : BSD3
Original file line number Diff line number Diff line change 14
14
{-# LANGUAGE StandaloneDeriving #-}
15
15
{-# LANGUAGE UndecidableInstances #-}
16
16
{-# LANGUAGE TypeApplications #-}
17
- -- | @multipart/form-data@ support for servant.
18
- --
19
- -- This is mostly useful for adding file upload support to
20
- -- an API. See haddocks of 'MultipartForm' for an introduction.
17
+ -- | @multipart/form-data@ client-side support for servant.
18
+ -- See servant-multipart-api for the API definitions.
21
19
module Servant.Multipart.Client
22
20
( genBoundary
23
21
, ToMultipart (.. )
Original file line number Diff line number Diff line change @@ -2,10 +2,7 @@ name: servant-multipart
2
2
version : 0.12
3
3
synopsis : multipart/form-data (e.g file upload) support for servant
4
4
description :
5
- This package adds support for file upload to the servant ecosystem. It draws
6
- on ideas and code from several people who participated in the
7
- (in)famous [ticket #133](https://github.com/haskell-servant/servant/issues/133) on
8
- servant's issue tracker.
5
+ This package adds server-side support of file upload to the servant ecosystem.
9
6
10
7
homepage : https://github.com/haskell-servant/servant-multipart#readme
11
8
license : BSD3
Original file line number Diff line number Diff line change 14
14
{-# LANGUAGE StandaloneDeriving #-}
15
15
{-# LANGUAGE UndecidableInstances #-}
16
16
{-# LANGUAGE TypeApplications #-}
17
- -- | @multipart/form-data@ support for servant.
18
- --
19
- -- This is mostly useful for adding file upload support to
20
- -- an API. See haddocks of 'MultipartForm' for an introduction.
17
+ -- | @multipart/form-data@ server-side support for servant.
18
+ -- See servant-multipart-api for the API definitions.
21
19
module Servant.Multipart
22
20
( MultipartForm
23
21
, MultipartForm'
You can’t perform that action at this time.
0 commit comments