Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 59e1dc2

Browse files
committedApr 10, 2022
Init
0 parents  commit 59e1dc2

File tree

7 files changed

+8464
-0
lines changed

7 files changed

+8464
-0
lines changed
 

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!TAGS

‎Setup.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain

‎TAGS

Lines changed: 8406 additions & 0 deletions
Large diffs are not rendered by default.

‎registry.cabal

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: registry
2+
version: 0.1.0.0
3+
-- synopsis:
4+
-- description:
5+
homepage: https://github.com/githubuser/registry#readme
6+
license: BSD3
7+
license-file: LICENSE
8+
author: Author name here
9+
maintainer: example@example.com
10+
copyright: 2021 Author name here
11+
category: Web
12+
build-type: Simple
13+
extra-source-files: README.md
14+
cabal-version: >=1.10
15+
16+
library
17+
hs-source-dirs: src
18+
exposed-modules: Lib
19+
build-depends: base >= 4.7 && < 5,
20+
transformers,
21+
mtl,
22+
bytestring,
23+
text,
24+
tasty
25+
default-language: Haskell2010
26+
27+
source-repository head
28+
type: git
29+
location: https://github.com/githubuser/registry

‎src/Lib.hs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module Lib
2+
( module Export
3+
) where
4+
5+
import Prelude as Export
6+
7+
import Control.Monad.Trans as Export
8+
import Control.Monad.Trans.Class as Export
9+
import Data.ByteString as Export
10+
import Data.Text as Export

‎stack.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
resolver: lts-18.20
2+
3+
packages:
4+
- .

‎stack.yaml.lock

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file was autogenerated by Stack.
2+
# You should not edit this file by hand.
3+
# For more information, please see the documentation at:
4+
# https://docs.haskellstack.org/en/stable/lock_files
5+
6+
packages: []
7+
snapshots:
8+
- completed:
9+
size: 586106
10+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/20.yaml
11+
sha256: 8699812d2b2c1f83d6ad1261de9cf628ed36a1cfc14f19d67188e005e7a3a39d
12+
original: lts-18.20

0 commit comments

Comments
 (0)
Failed to load comments.