/
githubmirror
/
syncthing
Обзор
Документация
Войти
/
githubmirror
/
syncthing
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/blob/interface.go
23 строки
538 B
Jakob Borg
chore: add missing copyright in new files from infra branch (#10055)
13 апр 2025, 12:25
Не верифицирован
13 апр 2025, 12:25
e46a0f9
Код
Авторство
О чём код?
// Copyright (C) 2025 The Syncthing Authors. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at https://mozilla.org/MPL/2.0/. package blob import ( "context" "io" ) type Store interface { Upload(ctx context.Context, key string, r io.Reader) error Download(ctx context.Context, key string, w Writer) error LatestKey(ctx context.Context) (string, error) } type Writer interface { io.Writer io.WriterAt }