/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/mounter/mounter_windows.go
18 строк
535 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
// Copyright 2015 Keybase, Inc. All rights reserved. Use of // this source code is governed by the included BSD license. //go:build windows package mounter import "fmt" // Unmount tries to unmount normally and then if force if unsuccessful. func Unmount(dir string, force bool, log Log) error { return fmt.Errorf("Unmount unsupported on this platform") } // ForceUnmount tries to forceably unmount a directory func ForceUnmount(dir string, log Log) (err error) { return fmt.Errorf("ForceUnmount unsupported on this platform") }