Rename app to Lemma

This commit is contained in:
2024-12-19 23:59:27 +01:00
parent 5598c0861d
commit b6b4c01f0e
70 changed files with 262 additions and 263 deletions

View File

@@ -1,6 +1,6 @@
# NovaMD Package Documentation
# Lemma Package Documentation
Generated documentation for all packages in the NovaMD project.
Generated documentation for all packages in the Lemma project.
## Table of Contents
@@ -26,7 +26,7 @@ configuration, initializes the server, and starts the server.
## docs
```go
package docs // import "novamd/docs"
package docs // import "lemma/docs"
Package docs Code generated by swaggo/swag. DO NOT EDIT
@@ -37,8 +37,8 @@ var SwaggerInfo = &swag.Spec{
Host: "",
BasePath: "/api/v1",
Schemes: []string{},
Title: "NovaMD API",
Description: "This is the API for NovaMD markdown note taking app.",
Title: "Lemma API",
Description: "This is the API for Lemma markdown note taking app.",
InfoInstanceName: "swagger",
SwaggerTemplate: docTemplate,
LeftDelim: "{{",
@@ -51,7 +51,7 @@ var SwaggerInfo = &swag.Spec{
## internal/app
```go
package app // import "novamd/internal/app"
package app // import "lemma/internal/app"
Package app provides application-level functionality for initializing and
running the server
@@ -118,7 +118,7 @@ func (s *Server) Start() error
## internal/auth
```go
package auth // import "novamd/internal/auth"
package auth // import "lemma/internal/auth"
Package auth provides JWT token generation and validation
@@ -210,7 +210,7 @@ const (
## internal/context
```go
package context // import "novamd/internal/context"
package context // import "lemma/internal/context"
Package context provides functions for managing request context
@@ -261,7 +261,7 @@ func GetUserFromContext(ctx context.Context) (*UserClaims, error)
## internal/db
```go
package db // import "novamd/internal/db"
package db // import "lemma/internal/db"
Package db provides the database access layer for the application. It contains
methods for interacting with the database, such as creating, updating, and
@@ -369,7 +369,7 @@ type WorkspaceWriter interface {
## internal/git
```go
package git // import "novamd/internal/git"
package git // import "lemma/internal/git"
Package git provides functionalities to interact with Git repositories,
including cloning, pulling, committing, and pushing changes.
@@ -409,7 +409,7 @@ type Config struct {
## internal/handlers
```go
package handlers // import "novamd/internal/handlers"
package handlers // import "lemma/internal/handlers"
Package handlers contains the request handlers for the api routes.
@@ -825,7 +825,7 @@ type WorkspaceStats struct {
## internal/models
```go
package models // import "novamd/internal/models"
package models // import "lemma/internal/models"
Package models contains the data models used throughout the application.
These models are used to represent data in the database, as well as to validate
@@ -902,7 +902,7 @@ func (w *Workspace) ValidateGitSettings() error
## internal/secrets
```go
package secrets // import "novamd/internal/secrets"
package secrets // import "lemma/internal/secrets"
Package secrets provides an Encryptor interface for encrypting and decrypting
strings using AES-256-GCM.
@@ -931,7 +931,7 @@ func NewService(key string) (Service, error)
## internal/storage
```go
package storage // import "novamd/internal/storage"
package storage // import "lemma/internal/storage"
Package storage provides functionalities to interact with the file system,
including listing files, finding files by name, getting file content, saving
@@ -1091,4 +1091,3 @@ type WorkspaceManager interface {
storage.
```