blob: 57f319a680acda4a440259bc5353177de2c81a73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
package main
import "net"
func serveLMTP(_ net.Listener) error {
return nil
}
|