github.com/grafviktor/keep-my-secret@v0.9.10-0.20230908165355-19f35cce90e5/internal/storage/type.go (about)

     1  // Package storage defines the storage types
     2  package storage
     3  
     4  // Type - storage type. Used to determine which storage is used by the application
     5  type Type string // Storage type
     6  
     7  // TypeSQL Storage - only sql storage is supported at the moment
     8  const (
     9  	TypeSQL Type = "sqlStorage" // SQL storage
    10  )