diff --git a/README.md b/README.md index e93115d..db6b631 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,5 @@ You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . +Bitcoin donations are accepted (but not required) at: +18hqEsXCinyauDp6smPUEVuscjDdasTKvr diff --git a/app/Main.hs b/app/Main.hs index de1c1ab..1e939bb 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,6 +1,27 @@ +{- + +passman +Copyright (C) 2018 Jonathan Lamothe + + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this program. If not, see +. + +-} module Main where -import Lib - main :: IO () -main = someFunc +main = undefined + +--jl diff --git a/src/Lib.hs b/src/Lib.hs deleted file mode 100644 index d36ff27..0000000 --- a/src/Lib.hs +++ /dev/null @@ -1,6 +0,0 @@ -module Lib - ( someFunc - ) where - -someFunc :: IO () -someFunc = putStrLn "someFunc" diff --git a/src/Password.hs b/src/Password.hs new file mode 100644 index 0000000..b37ba3c --- /dev/null +++ b/src/Password.hs @@ -0,0 +1,25 @@ +{-| + +Module: Password +Description: a simple password manager +Copyright: (C) 2018 Jonathan Lamothe +License: LGPLv3 (or later) +Maintainer: jlamothe1980@gmail.com + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this program. If not, see +. + +-} + +module Password where