We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a93bbbd commit 8f6eb2dCopy full SHA for 8f6eb2d
src/presentation/sharing.rs
@@ -51,7 +51,7 @@ impl SharingService {
51
}
52
53
54
- fn generate_share_url(
+ pub fn generate_share_url(
55
metrics: &SessionResult,
56
platform: &SharingPlatform,
57
repo_info: &Option<GitRepository>,
@@ -95,7 +95,7 @@ impl SharingService {
95
96
97
98
- fn create_share_text(metrics: &SessionResult, repo_info: &Option<GitRepository>) -> String {
+ pub fn create_share_text(metrics: &SessionResult, repo_info: &Option<GitRepository>) -> String {
99
let best_rank = Rank::for_score(metrics.session_score);
100
if let Some(repo) = repo_info {
101
format!(
0 commit comments