pdb

Simple password manager
Log | Files | Refs | README

paths.lua (141B)


      1 local _M = { }
      2 
      3 local path = os.getenv( "HOME" ) .. "/.pdb/"
      4 
      5 _M.path = path
      6 _M.db = path .. "passwords/"
      7 _M.key = path .. "key2"
      8 
      9 return _M