about summary refs log tree commit diff stats
path: root/crates/termsize/src/other.rs
blob: 8a02f22bc696a544daedd139cce476d8b352b93a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// yt - A fully featured command line YouTube client
//
// Copyright (C) 2025 softprops <d.tangren@gmail.com>
// SPDX-License-Identifier: MIT
//
// This file is part of Yt.
//
// You should have received a copy of the License along with this program.
// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.

/// Gets the current terminal size
pub fn get() -> Option<super::Size> {
    None
}