Add Auth.elm for 7 and 8 and a .gitignore exclusion for them

This commit is contained in:
Richard Feldman
2016-04-03 12:14:23 -07:00
parent ef6169d476
commit c4aec5964e
5 changed files with 15 additions and 1 deletions

1
part7/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
!Auth.elm

View File

@@ -1,4 +1,4 @@
Part 6
Part 7
======
## Installation

6
part7/test/Auth.elm Normal file
View File

@@ -0,0 +1,6 @@
module Auth (token) where
token =
-- Tests don't need a real token.
""

1
part8/test/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
!Auth.elm

6
part8/test/Auth.elm Normal file
View File

@@ -0,0 +1,6 @@
module Auth (token) where
token =
-- Tests don't need a real token.
""