Support Google Sign-in client-side

TODO: Support Google Sign-in server-side

Also:
- Add Haskell to project's shell.nix
- Add stubbed Main.hs and Spec.hs
- Add common .ghci file
This commit is contained in:
William Carroll 2020-08-06 21:54:25 +01:00
parent 5f52077492
commit 1fc1087014
5 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,13 @@
--------------------------------------------------------------------------------
module Spec where
--------------------------------------------------------------------------------
import Test.Hspec
import Test.QuickCheck
import Control.Exception (evaluate)
--------------------------------------------------------------------------------
main :: IO ()
main = hspec $ do
describe "Testing" $ do
it "is setup" $ do
True == True