Skip to content

Commit bb6f90f

Browse files
committed
arranged for repo change
1 parent fe992c9 commit bb6f90f

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
authors = ["Khumnath <[email protected]>"]
66
description = "A library for converting between Gregorian and Bikram Sambat (Nepali) dates."
77
license = "GPL-3.0-or-later"
8-
repository = "https://github.com/khumnath/nepdate-cli"
8+
repository = "https://github.com/opensource-nepal/nepdate-cli"
99

1010
[lib]
1111
name = "bikram"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
First, clone the repository:
2020

2121
```bash
22-
git clone --branch rust https://github.com/khumnath/nepdate-cli.git
22+
git clone --branch rust https://github.com/opensource-nepal/nepdate-cli.git
2323
cd nepdate-cli
2424
```
2525

src/bikram.rs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (C) 2024 Khumnath CG
3+
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
120
use std::f64::consts::PI;
221
use chrono::NaiveDate;
322
pub struct Bikram {

0 commit comments

Comments
 (0)