blob: a3064d1a45bf6a482bdd268123f12ca6b6d7d2ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
package main
import (
"log/slog"
"github.com/emersion/go-message"
)
func lmtpHandlePatch(groupPath []string, repoName string, email *message.Entity) (err error) {
slog.Info("Pretend like I'm handling a patch!")
return nil
}
|